Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.33 KB

File metadata and controls

38 lines (29 loc) · 1.33 KB

OrganizationFields

Properties

Name Type Description Notes
created_at datetime [optional]
credit int [optional]
id int
name str
threshold int [optional]
total_clusters int [optional]
total_containers int [optional]
total_instances int [optional]
total_volumes int [optional]
users List[OrganizationUserResponseModel] [optional]

Example

from hyperstack.models.organization_fields import OrganizationFields

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

# convert the object into a dict
organization_fields_dict = organization_fields_instance.to_dict()
# create an instance of OrganizationFields from a dict
organization_fields_from_dict = OrganizationFields.from_dict(organization_fields_dict)

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