Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 894 Bytes

File metadata and controls

29 lines (20 loc) · 894 Bytes

AssignRoleInput

Properties

Name Type Description Notes
role_id UUID

Example

from stratum.models.assign_role_input import AssignRoleInput

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

# convert the object into a dict
assign_role_input_dict = assign_role_input_instance.to_dict()
# create an instance of AssignRoleInput from a dict
assign_role_input_from_dict = AssignRoleInput.from_dict(assign_role_input_dict)

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