Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.11 KB

File metadata and controls

31 lines (23 loc) · 1.11 KB

StoreContact

Contact data

Properties

Name Type Description Notes
phone int Contact’s phone number
groups List[ContactGroupSchema] contains embedded data of the list where the contact is added [optional]
fields List[ContactFieldValuePair] Array of custom fields values [optional]

Example

from bsg_api.models.store_contact import StoreContact

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

# convert the object into a dict
store_contact_dict = store_contact_instance.to_dict()
# create an instance of StoreContact from a dict
store_contact_from_dict = StoreContact.from_dict(store_contact_dict)

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