Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.17 KB

File metadata and controls

34 lines (25 loc) · 1.17 KB

OrgUpdate

Properties

Name Type Description Notes
email str Email of the org. [optional]
description str Description of the org. [optional]
website_url str Website URL of the org. [optional]
logo_image_url str Logo of the org. [optional]
limits_id str Usage limits ID applied to the entire org. (Admin only) [optional]
locked bool Lock the org. (Admin only) [optional]

Example

from saturn_api.models.org_update import OrgUpdate

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

# convert the object into a dict
org_update_dict = org_update_instance.to_dict()
# create an instance of OrgUpdate from a dict
org_update_from_dict = OrgUpdate.from_dict(org_update_dict)

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