e.g. consider the following IDL:
module Example {
struct Foo {
string bar;
long baz;
};
};
In Python the structure can be used as follows:
>>> import Example
>>> struct = Example.Foo("Hello", 99)
>>> struct.bar
`Hello'
>>> struct.baz
99
>>> struct.bar = "Goodbye"
>>> struct.bar
`Goodbye'
>>>