Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.29 KB

File metadata and controls

36 lines (27 loc) · 1.29 KB

OrganizationUserModel

Properties

Name Type Description Notes
id int [optional]
sub str [optional]
email str [optional]
username str [optional]
name str [optional]
role str [optional]
rbac_roles List[RBACRoleFieldforOrganization] [optional]
joined_at datetime [optional]

Example

from hyperstack.models.organization_user_model import OrganizationUserModel

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

# convert the object into a dict
organization_user_model_dict = organization_user_model_instance.to_dict()
# create an instance of OrganizationUserModel from a dict
organization_user_model_form_dict = organization_user_model.from_dict(organization_user_model_dict)

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