Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.57 KB

File metadata and controls

32 lines (23 loc) · 1.57 KB

InlineResponse200469ResultMetaFields

Properties

Name Type Description Notes
id str The template's ID. [optional]
label str The template's label. [optional]
placeholder str A string that temporarily takes the place of the final data. [optional]
type str The template's type. * `color` * `datetime-local` * `email` * `Medical` * `tel` * `text` * `textarea` * `url` [optional]

Example

from clientapi_cpanel.models.inline_response200469_result_meta_fields import InlineResponse200469ResultMetaFields

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

# convert the object into a dict
inline_response200469_result_meta_fields_dict = inline_response200469_result_meta_fields_instance.to_dict()
# create an instance of InlineResponse200469ResultMetaFields from a dict
inline_response200469_result_meta_fields_from_dict = InlineResponse200469ResultMetaFields.from_dict(inline_response200469_result_meta_fields_dict)

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