Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 962 Bytes

CustomFieldValue.md

File metadata and controls

30 lines (21 loc) · 962 Bytes

CustomFieldValue

Properties

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

Example

from qase.api_client_v1.models.custom_field_value import CustomFieldValue

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

# convert the object into a dict
custom_field_value_dict = custom_field_value_instance.to_dict()
# create an instance of CustomFieldValue from a dict
custom_field_value_form_dict = custom_field_value.from_dict(custom_field_value_dict)

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