Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 924 Bytes

PlanResponse.md

File metadata and controls

30 lines (21 loc) · 924 Bytes

PlanResponse

Properties

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

Example

from qaseio.models.plan_response import PlanResponse

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

# convert the object into a dict
plan_response_dict = plan_response_instance.to_dict()
# create an instance of PlanResponse from a dict
plan_response_form_dict = plan_response.from_dict(plan_response_dict)

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