Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 996 Bytes

MilestoneResponse.md

File metadata and controls

30 lines (21 loc) · 996 Bytes

MilestoneResponse

Properties

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

Example

from qase.api_client_v1.models.milestone_response import MilestoneResponse

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

# convert the object into a dict
milestone_response_dict = milestone_response_instance.to_dict()
# create an instance of MilestoneResponse from a dict
milestone_response_form_dict = milestone_response.from_dict(milestone_response_dict)

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