Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

MilestoneListResponse.md

File metadata and controls

30 lines (21 loc) · 1.08 KB

MilestoneListResponse

Properties

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

Example

from qase.api_client_v1.models.milestone_list_response import MilestoneListResponse

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

# convert the object into a dict
milestone_list_response_dict = milestone_list_response_instance.to_dict()
# create an instance of MilestoneListResponse from a dict
milestone_list_response_form_dict = milestone_list_response.from_dict(milestone_list_response_dict)

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