Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 1.05 KB

AddUserToProjectInput.md

File metadata and controls

28 lines (21 loc) · 1.05 KB

AddUserToProjectInput

Properties

Name Type Description Notes
principal_id str
principal_type str

Example

from affinidi_tdk_iam_client.models.add_user_to_project_input import AddUserToProjectInput

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

# convert the object into a dict
add_user_to_project_input_dict = add_user_to_project_input_instance.to_dict()
# create an instance of AddUserToProjectInput from a dict
add_user_to_project_input_from_dict = AddUserToProjectInput.from_dict(add_user_to_project_input_dict)

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