Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.23 KB

File metadata and controls

33 lines (24 loc) · 1.23 KB

GroupCreate

Properties

Name Type Description Notes
groupname str Name of the group.
org_id str Org ID that the group belongs to. Defaults to the default org for the authenticated user. [optional]
description str Description of the group. [optional]
is_multiple_ssh_keys bool Enable multiple SSH keys. [optional] [default to False]
org_admin bool Enable group to take privileged actions on its org. [optional] [default to False]

Example

from saturn_api.models.group_create import GroupCreate

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

# convert the object into a dict
group_create_dict = group_create_instance.to_dict()
# create an instance of GroupCreate from a dict
group_create_from_dict = GroupCreate.from_dict(group_create_dict)

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