Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.41 KB

File metadata and controls

37 lines (28 loc) · 1.41 KB

OrganizationUserResponseModel

Properties

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

Example

from hyperstack.models.organization_user_response_model import OrganizationUserResponseModel

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

# convert the object into a dict
organization_user_response_model_dict = organization_user_response_model_instance.to_dict()
# create an instance of OrganizationUserResponseModel from a dict
organization_user_response_model_from_dict = OrganizationUserResponseModel.from_dict(organization_user_response_model_dict)

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