Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 950 Bytes

File metadata and controls

29 lines (20 loc) · 950 Bytes

GroupMemberCreate

Properties

Name Type Description Notes
user_id str User ID to add to the group.

Example

from saturn_api.models.group_member_create import GroupMemberCreate

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

# convert the object into a dict
group_member_create_dict = group_member_create_instance.to_dict()
# create an instance of GroupMemberCreate from a dict
group_member_create_from_dict = GroupMemberCreate.from_dict(group_member_create_dict)

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