Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 789 Bytes

TenantUser.md

File metadata and controls

27 lines (19 loc) · 789 Bytes

TenantUser

Properties

Name Type Description Notes
user_id str [optional]

Example

from authress.models.tenant_user import TenantUser

json = "{}"
# create an instance of TenantUser from a JSON string
tenant_user_instance = TenantUser.from_json(json)
# print the JSON string representation of the object
print TenantUser.to_json()

# convert the object into a dict
tenant_user_dict = tenant_user_instance.to_dict()
# create an instance of TenantUser from a dict
tenant_user_from_dict = TenantUser.from_dict(tenant_user_dict)

[API Models][API Endpoints][Back to Repo]