Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

TemplateAddFieldsResponse.md

File metadata and controls

31 lines (22 loc) · 1.1 KB

TemplateAddFieldsResponse

Properties

Name Type Description Notes
status str
errors List[str] [optional]
new_field_ids List[int] [optional]

Example

from docspring.models.template_add_fields_response import TemplateAddFieldsResponse

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

# convert the object into a dict
template_add_fields_response_dict = template_add_fields_response_instance.to_dict()
# create an instance of TemplateAddFieldsResponse from a dict
template_add_fields_response_from_dict = TemplateAddFieldsResponse.from_dict(template_add_fields_response_dict)

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