One interesting that I have found is the [Transient] metadata . What it does?
It instructs Flex not to serialize the object member (variable/function) when you do a serialize/deserialize of an object.
Here is a quick more in detail code
public class Test
{
private var x: int;
private var y: int;
public function get [...]