Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.39 KB

Program.md

File metadata and controls

39 lines (30 loc) · 1.39 KB

Program

Properties

Name Type Description Notes
id str [optional] [readonly]
name str
description str [optional]
charter str [optional]
principal_users List[StakeholderUsersInner] [optional] [readonly]
stakeholder_users List[StakeholderUsersInner] [optional] [readonly]
parent str [optional]
tags List[TagsInner] [optional] [readonly]
created_by CreatedBy [optional]
created_date datetime [optional] [readonly]
modified_date datetime [optional] [readonly]

Example

from pp_sdk.models.program import Program

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

# convert the object into a dict
program_dict = program_instance.to_dict()
# create an instance of Program from a dict
program_from_dict = Program.from_dict(program_dict)

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