Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

OrganizationThresholdUpdateResponse

Properties

Name Type Description Notes
message str [optional]
status bool [optional]
threshold OrganizationThresholdFields [optional]

Example

from hyperstack.models.organization_threshold_update_response import OrganizationThresholdUpdateResponse

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

# convert the object into a dict
organization_threshold_update_response_dict = organization_threshold_update_response_instance.to_dict()
# create an instance of OrganizationThresholdUpdateResponse from a dict
organization_threshold_update_response_from_dict = OrganizationThresholdUpdateResponse.from_dict(organization_threshold_update_response_dict)

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