Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.45 KB

File metadata and controls

32 lines (23 loc) · 1.45 KB

ReachV1FormsFormTagResource

A tag applied to every contact this form captures.

Properties

Name Type Description Notes
uuid str [optional]
value str [optional]
type str How the tag came about. `custom` covers the tags you create yourself, `import` the ones added by contact imports, and `form` and `system` the ones Reach creates on its own. Every form gets a `form:{name}` tag when it is created. [optional]

Example

from hostinger_api.models.reach_v1_forms_form_tag_resource import ReachV1FormsFormTagResource

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

# convert the object into a dict
reach_v1_forms_form_tag_resource_dict = reach_v1_forms_form_tag_resource_instance.to_dict()
# create an instance of ReachV1FormsFormTagResource from a dict
reach_v1_forms_form_tag_resource_from_dict = ReachV1FormsFormTagResource.from_dict(reach_v1_forms_form_tag_resource_dict)

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