Name | Type | Description | Notes |
---|---|---|---|
id | str | [optional] [readonly] | |
user_name | str | ||
name | Name | ||
active | bool | Default: true | [optional] |
emails | List[Email] | ||
meta | ScimMeta | [optional] |
from phrasetms_client.models.scim_user_core_dto import ScimUserCoreDto
# TODO update the JSON string below
json = "{}"
# create an instance of ScimUserCoreDto from a JSON string
scim_user_core_dto_instance = ScimUserCoreDto.from_json(json)
# print the JSON string representation of the object
print ScimUserCoreDto.to_json()
# convert the object into a dict
scim_user_core_dto_dict = scim_user_core_dto_instance.to_dict()
# create an instance of ScimUserCoreDto from a dict
scim_user_core_dto_from_dict = ScimUserCoreDto.from_dict(scim_user_core_dto_dict)