Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

OrganizationObjectResponse

Properties

Name Type Description Notes
org_id int [optional]
resources List[InfrahubResourceObjectResponse] [optional]

Example

from hyperstack.models.organization_object_response import OrganizationObjectResponse

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

# convert the object into a dict
organization_object_response_dict = organization_object_response_instance.to_dict()
# create an instance of OrganizationObjectResponse from a dict
organization_object_response_form_dict = organization_object_response.from_dict(organization_object_response_dict)

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