Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1005 Bytes

QqlPlan.md

File metadata and controls

34 lines (25 loc) · 1005 Bytes

QqlPlan

Properties

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

Example

from qaseio.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]