Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.06 KB

File metadata and controls

30 lines (21 loc) · 1.06 KB

OrganizationResources

Properties

Name Type Description Notes
organization_id int [optional]
environments List[EnvrionmentResources] [optional]

Example

from hyperstack.models.organization_resources import OrganizationResources

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

# convert the object into a dict
organization_resources_dict = organization_resources_instance.to_dict()
# create an instance of OrganizationResources from a dict
organization_resources_form_dict = organization_resources.from_dict(organization_resources_dict)

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