Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

ReachV1ContactsTagsUpdateRequest

Rename a tag

Properties

Name Type Description Notes
value str New tag name

Example

from hostinger_api.models.reach_v1_contacts_tags_update_request import ReachV1ContactsTagsUpdateRequest

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

# convert the object into a dict
reach_v1_contacts_tags_update_request_dict = reach_v1_contacts_tags_update_request_instance.to_dict()
# create an instance of ReachV1ContactsTagsUpdateRequest from a dict
reach_v1_contacts_tags_update_request_from_dict = ReachV1ContactsTagsUpdateRequest.from_dict(reach_v1_contacts_tags_update_request_dict)

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