Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.14 KB

File metadata and controls

28 lines (20 loc) · 1.14 KB

ContactFieldUpdateRequestOption2

Properties

Name Type Description Notes
description str Description of the custom contact field [optional]

Example

from bsg_api.models.contact_field_update_request_option2 import ContactFieldUpdateRequestOption2

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

# convert the object into a dict
contact_field_update_request_option2_dict = contact_field_update_request_option2_instance.to_dict()
# create an instance of ContactFieldUpdateRequestOption2 from a dict
contact_field_update_request_option2_from_dict = ContactFieldUpdateRequestOption2.from_dict(contact_field_update_request_option2_dict)

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