Name |
Type |
Description |
Notes |
id |
int |
|
[optional] |
title |
str |
|
[optional] |
description |
str |
|
[optional] |
status |
str |
|
[optional] |
due_date |
datetime |
|
[optional] |
created |
str |
Deprecated, use the `created_at` property instead. |
[optional] |
updated |
str |
Deprecated, use the `updated_at` property instead. |
[optional] |
created_at |
datetime |
|
[optional] |
updated_at |
datetime |
|
[optional] |
from qase.api_client_v1.models.milestone import Milestone
# TODO update the JSON string below
json = "{}"
# create an instance of Milestone from a JSON string
milestone_instance = Milestone.from_json(json)
# print the JSON string representation of the object
print(Milestone.to_json())
# convert the object into a dict
milestone_dict = milestone_instance.to_dict()
# create an instance of Milestone from a dict
milestone_form_dict = milestone.from_dict(milestone_dict)
[Back to Model list] [Back to API list] [Back to README]