Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1 KB

SearchResponseFields.md

File metadata and controls

30 lines (21 loc) · 1 KB

SearchResponseFields

Properties

Name Type Description Notes
attributes List[str] [optional]
tags List[str] [optional]

Example

from formkiq_client.models.search_response_fields import SearchResponseFields

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

# convert the object into a dict
search_response_fields_dict = search_response_fields_instance.to_dict()
# create an instance of SearchResponseFields from a dict
search_response_fields_from_dict = SearchResponseFields.from_dict(search_response_fields_dict)

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