Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.67 KB

File metadata and controls

30 lines (21 loc) · 1.67 KB

InscriptionchecklistGetAutocompleteV3ResponseMPayload

Payload for POST /3/object/inscriptionchecklist/getAutocomplete

Properties

Name Type Description Notes
a_obj_inscriptionchecklist List[InscriptionchecklistAutocompleteElementResponse] An array of Inscriptionchecklist object containing the description, ID and active status about the element.

Example

from eZmaxApi.models.inscriptionchecklist_get_autocomplete_v3_response_m_payload import InscriptionchecklistGetAutocompleteV3ResponseMPayload

# TODO update the JSON string below
json = "{}"
# create an instance of InscriptionchecklistGetAutocompleteV3ResponseMPayload from a JSON string
inscriptionchecklist_get_autocomplete_v3_response_m_payload_instance = InscriptionchecklistGetAutocompleteV3ResponseMPayload.from_json(json)
# print the JSON string representation of the object
print(InscriptionchecklistGetAutocompleteV3ResponseMPayload.to_json())

# convert the object into a dict
inscriptionchecklist_get_autocomplete_v3_response_m_payload_dict = inscriptionchecklist_get_autocomplete_v3_response_m_payload_instance.to_dict()
# create an instance of InscriptionchecklistGetAutocompleteV3ResponseMPayload from a dict
inscriptionchecklist_get_autocomplete_v3_response_m_payload_from_dict = InscriptionchecklistGetAutocompleteV3ResponseMPayload.from_dict(inscriptionchecklist_get_autocomplete_v3_response_m_payload_dict)

[Back to Model list] [Back to API list] [Back to README]