module Example.IVI.AddressBook 1.0; @config: { qml_type: "UiAddressBook" } //! [0] interface AddressBook { model contacts; void insertContact(int index, Contact contact); } struct Contact { string forename; string name; int phone; } //! [0]