Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

XlsFormListChoicesDTO

Properties

Name Type Description Notes
name str [optional]
choices List[XlsFormListChoiceDTO] [optional]

Example

from data_bridges_client.models.xls_form_list_choices_dto import XlsFormListChoicesDTO

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

# convert the object into a dict
xls_form_list_choices_dto_dict = xls_form_list_choices_dto_instance.to_dict()
# create an instance of XlsFormListChoicesDTO from a dict
xls_form_list_choices_dto_from_dict = XlsFormListChoicesDTO.from_dict(xls_form_list_choices_dto_dict)

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