Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.65 KB

File metadata and controls

36 lines (27 loc) · 1.65 KB

ReachV1FormsFormDetailsResource

Properties

Name Type Description Notes
uuid str [optional]
name str [optional]
status str A `paused` form keeps its template online but stops accepting submissions. [optional]
type str [optional]
template ReachV1FormsFormTemplateDetailsResource [optional]
tags List[ReachV1FormsFormTagResource] Tags applied to every contact this form captures. [optional]
created_at datetime [optional]
updated_at datetime [optional]

Example

from hostinger_api.models.reach_v1_forms_form_details_resource import ReachV1FormsFormDetailsResource

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

# convert the object into a dict
reach_v1_forms_form_details_resource_dict = reach_v1_forms_form_details_resource_instance.to_dict()
# create an instance of ReachV1FormsFormDetailsResource from a dict
reach_v1_forms_form_details_resource_from_dict = ReachV1FormsFormDetailsResource.from_dict(reach_v1_forms_form_details_resource_dict)

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