Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.26 KB

File metadata and controls

42 lines (33 loc) · 1.26 KB

PyTASProject

Properties

Name Type Description Notes
id int
title str
description str
charge_code str
gid int
source object
field_id int
var_field str
type_id int
type str
pi_id int
pi PyTASPi
allocations List[PyTASAllocation]
nickname object

Example

from upstream_api_client.models.py_tas_project import PyTASProject

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

# convert the object into a dict
py_tas_project_dict = py_tas_project_instance.to_dict()
# create an instance of PyTASProject from a dict
py_tas_project_from_dict = PyTASProject.from_dict(py_tas_project_dict)

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