Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.4 KB

File metadata and controls

31 lines (22 loc) · 1.4 KB

ReachV1ContactsFieldsContactFieldOptionResource

Properties

Name Type Description Notes
uuid str [optional]
label str [optional]
sort_order int [optional]

Example

from hostinger_api.models.reach_v1_contacts_fields_contact_field_option_resource import ReachV1ContactsFieldsContactFieldOptionResource

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

# convert the object into a dict
reach_v1_contacts_fields_contact_field_option_resource_dict = reach_v1_contacts_fields_contact_field_option_resource_instance.to_dict()
# create an instance of ReachV1ContactsFieldsContactFieldOptionResource from a dict
reach_v1_contacts_fields_contact_field_option_resource_from_dict = ReachV1ContactsFieldsContactFieldOptionResource.from_dict(reach_v1_contacts_fields_contact_field_option_resource_dict)

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