Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

ReachV1ContactsGroupsContactGroupResource

Properties

Name Type Description Notes
uuid str [optional]
title str [optional]

Example

from hostinger_api.models.reach_v1_contacts_groups_contact_group_resource import ReachV1ContactsGroupsContactGroupResource

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

# convert the object into a dict
reach_v1_contacts_groups_contact_group_resource_dict = reach_v1_contacts_groups_contact_group_resource_instance.to_dict()
# create an instance of ReachV1ContactsGroupsContactGroupResource from a dict
reach_v1_contacts_groups_contact_group_resource_from_dict = ReachV1ContactsGroupsContactGroupResource.from_dict(reach_v1_contacts_groups_contact_group_resource_dict)

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