Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.38 KB

ScimUserCoreDto.md

File metadata and controls

32 lines (25 loc) · 1.38 KB

ScimUserCoreDto

Properties

Name Type Description Notes
id str [optional] [readonly]
user_name str
name Name
active bool Default: true [optional]
emails List[Email]
meta ScimMeta [optional]

Example

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)

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