Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.25 KB

CustomFieldsResponseAllOfResult.md

File metadata and controls

32 lines (23 loc) · 1.25 KB

CustomFieldsResponseAllOfResult

Properties

Name Type Description Notes
total int [optional]
filtered int [optional]
count int [optional]
entities List[CustomField] [optional]

Example

from qaseio.models.custom_fields_response_all_of_result import CustomFieldsResponseAllOfResult

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

# convert the object into a dict
custom_fields_response_all_of_result_dict = custom_fields_response_all_of_result_instance.to_dict()
# create an instance of CustomFieldsResponseAllOfResult from a dict
custom_fields_response_all_of_result_form_dict = custom_fields_response_all_of_result.from_dict(custom_fields_response_all_of_result_dict)

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