Skip to content

Latest commit

 

History

History
executable file
·
37 lines (28 loc) · 1.29 KB

ProjectDetails.md

File metadata and controls

executable file
·
37 lines (28 loc) · 1.29 KB

ProjectDetails

Properties

Name Type Description Notes
pk int [optional] [readonly]
project_id str [optional] [readonly]
description str [optional]
closed bool [optional]
all_users bool [optional]
authorized_user_profiles List[int] [optional]
has_budget bool [optional] [readonly]
spend_limit SpendLimit [optional]
current_spend CurrentSpend [optional]

Example

from epiccore.models.project_details import ProjectDetails

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

# convert the object into a dict
project_details_dict = project_details_instance.to_dict()
# create an instance of ProjectDetails from a dict
project_details_form_dict = project_details.from_dict(project_details_dict)

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