Member values
Member name | Data type | Description | Usage |
---|---|---|---|
handle | MappingHandle | Mapping handle (do not set on createMapping() call) | To set handle, you simply assign a value directly to a field within handle. You can also use the parent message’s HasField() method to check if a message type field value has been set. |
name | str | Mapping friendly name | You can manipulate the field name as if it were a regular field. To clear the value of name and reset it to the default value for its type, you call the ClearField() method of the Message interface. |
controller_identifier | int | Associated controller identifier | You can manipulate the field controller_identifier as if it were a regular field. To clear the value of controller_identifier and reset it to the default value for its type, you call the ClearField() method of the Message interface. |
active_map_group_handle | MapGroupHandle | Currently active map group (not implemented yet) | To set active_map_group_handle, you simply assign a value directly to a field within active_map_group_handle. You can also use the parent message’s HasField() method to check if a message type field value has been set. |
map_group_handles | MapGroupHandle | Array of associated map groups (not implemented yet) | Repeated message fields are represented as an object that acts like a Python sequence. However, You must use add() instead of append(). It also has an extend() function that appends an entire list of messages, but makes a copy of every message in the list. |
active_map_handle | MapHandle | Currently active map | To set active_map_handle, you simply assign a value directly to a field within active_map_handle. You can also use the parent message’s HasField() method to check if a message type field value has been set. |
map_handles | MapHandle | Array of associated maps | Repeated message fields are represented as an object that acts like a Python sequence. However, You must use add() instead of append(). It also has an extend() function that appends an entire list of messages, but makes a copy of every message in the list. |
application_data | str | Application data (reserved for use by Web App) | You can manipulate the field application_data as if it were a regular field. To clear the value of application_data and reset it to the default value for its type, you call the ClearField() method of the Message interface. |
Parent topic: Base (Python)