Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1007 Bytes

File metadata and controls

31 lines (22 loc) · 1007 Bytes

CreateGroupRequest

Properties

Name Type Description Notes
name str
description str [optional]
email str [optional]

Example

from ksapi.models.create_group_request import CreateGroupRequest

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

# convert the object into a dict
create_group_request_dict = create_group_request_instance.to_dict()
# create an instance of CreateGroupRequest from a dict
create_group_request_from_dict = CreateGroupRequest.from_dict(create_group_request_dict)

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