Are you saying that you have a SpecialCollectionBitemporal association
that Rails only knows as a CollectionBitemporal at the point it's sent
accross? In other words, do you have a superclass where the
Actionscript property is a type of a subclass?
The AMF spec doesn't have anything special about polymorphism built
in. The Flash player will convert a class C to a class C and get the
inherited properties from class B if C inherits B, but it won't know
that class incoming class B should really be a C. That's in line with
polymorphism rules, so it sounds like I must be misunderstanding
something.
In any case, if worst comes to worst, you still have the properties,
you're just not getting the automatic class conversion, so you can do
some conversion yourself if you need to.
I don't know how helpful that was...