Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

CustomFieldCreateValueInner.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

CustomFieldCreateValueInner

Properties

Name Type Description Notes
id int [optional]
title str [optional]

Example

from qaseio.models.custom_field_create_value_inner import CustomFieldCreateValueInner

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

# convert the object into a dict
custom_field_create_value_inner_dict = custom_field_create_value_inner_instance.to_dict()
# create an instance of CustomFieldCreateValueInner from a dict
custom_field_create_value_inner_form_dict = custom_field_create_value_inner.from_dict(custom_field_create_value_inner_dict)

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