Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.02 KB

QqlPlan.md

File metadata and controls

35 lines (26 loc) · 1.02 KB

QqlPlan

Properties

Name Type Description Notes
id int [optional]
plan_id int
title str [optional]
description str [optional]
cases_count int [optional]
created_at datetime [optional]
updated_at datetime [optional]

Example

from qase.api_client_v1.models.qql_plan import QqlPlan

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

# convert the object into a dict
qql_plan_dict = qql_plan_instance.to_dict()
# create an instance of QqlPlan from a dict
qql_plan_form_dict = qql_plan.from_dict(qql_plan_dict)

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