Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.07 KB

File metadata and controls

31 lines (23 loc) · 1.07 KB

FormMetadata

Properties

Name Type Description Notes
key str The form field key. [optional]
type str The form field type. [optional]
format str The form field format. [optional]
possible_values List[str] The list of possible values for the form field. [optional]

Example

from docspace_api_sdk.models.form_metadata import FormMetadata

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

# convert the object into a dict
form_metadata_dict = form_metadata_instance.to_dict()
# create an instance of FormMetadata from a dict
form_metadata_from_dict = FormMetadata.from_dict(form_metadata_dict)

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