Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.23 KB

AddUserToGroupInput.md

File metadata and controls

31 lines (23 loc) · 1.23 KB

AddUserToGroupInput

input used to add a user to a group

Properties

Name Type Description Notes
name str [optional]
description str [optional]
user_id str Unique identifier of the user

Example

from affinidi_tdk_login_configuration_client.models.add_user_to_group_input import AddUserToGroupInput

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

# convert the object into a dict
add_user_to_group_input_dict = add_user_to_group_input_instance.to_dict()
# create an instance of AddUserToGroupInput from a dict
add_user_to_group_input_from_dict = AddUserToGroupInput.from_dict(add_user_to_group_input_dict)

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