Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.35 KB

File metadata and controls

32 lines (23 loc) · 1.35 KB

ReachV1ContactsTagsTagResource

Properties

Name Type Description Notes
uuid str [optional]
type str How the tag came about. `custom` covers the tags you create yourself, `form` covers the ones Reach creates for its forms. [optional]
value str [optional]
created_at datetime [optional]

Example

from hostinger_api.models.reach_v1_contacts_tags_tag_resource import ReachV1ContactsTagsTagResource

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

# convert the object into a dict
reach_v1_contacts_tags_tag_resource_dict = reach_v1_contacts_tags_tag_resource_instance.to_dict()
# create an instance of ReachV1ContactsTagsTagResource from a dict
reach_v1_contacts_tags_tag_resource_from_dict = ReachV1ContactsTagsTagResource.from_dict(reach_v1_contacts_tags_tag_resource_dict)

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