Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.44 KB

InlineResponse200469ResultMeta.md

File metadata and controls

31 lines (22 loc) · 1.44 KB

InlineResponse200469ResultMeta

A set of data that gives information on the template.

Properties

Name Type Description Notes
fields List[InlineResponse200469ResultMetaFields] This array of objects shows the information for each field the user can add input in the template. [optional]
information InlineResponse200469ResultMetaInformation [optional]

Example

from clientapi_cpanel.models.inline_response200469_result_meta import InlineResponse200469ResultMeta

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

# convert the object into a dict
inline_response200469_result_meta_dict = inline_response200469_result_meta_instance.to_dict()
# create an instance of InlineResponse200469ResultMeta from a dict
inline_response200469_result_meta_from_dict = InlineResponse200469ResultMeta.from_dict(inline_response200469_result_meta_dict)

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