Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.13 KB

SystemFieldOption.md

File metadata and controls

35 lines (26 loc) · 1.13 KB

SystemFieldOption

Properties

Name Type Description Notes
id int [optional]
title str [optional]
slug str [optional]
color str [optional]
icon str [optional]
is_default bool [optional]
read_only bool [optional]

Example

from qaseio.models.system_field_option import SystemFieldOption

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

# convert the object into a dict
system_field_option_dict = system_field_option_instance.to_dict()
# create an instance of SystemFieldOption from a dict
system_field_option_form_dict = system_field_option.from_dict(system_field_option_dict)

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