Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

PlanListResponseAllOfResult.md

File metadata and controls

32 lines (23 loc) · 1.19 KB

PlanListResponseAllOfResult

Properties

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

Example

from qaseio.models.plan_list_response_all_of_result import PlanListResponseAllOfResult

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

# convert the object into a dict
plan_list_response_all_of_result_dict = plan_list_response_all_of_result_instance.to_dict()
# create an instance of PlanListResponseAllOfResult from a dict
plan_list_response_all_of_result_form_dict = plan_list_response_all_of_result.from_dict(plan_list_response_all_of_result_dict)

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