Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

CustomFieldsResponse.md

File metadata and controls

30 lines (21 loc) · 1.05 KB

CustomFieldsResponse

Properties

Name Type Description Notes
status bool [optional]
result CustomFieldsResponseAllOfResult [optional]

Example

from qaseio.models.custom_fields_response import CustomFieldsResponse

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

# convert the object into a dict
custom_fields_response_dict = custom_fields_response_instance.to_dict()
# create an instance of CustomFieldsResponse from a dict
custom_fields_response_form_dict = custom_fields_response.from_dict(custom_fields_response_dict)

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