Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1005 Bytes

File metadata and controls

30 lines (21 loc) · 1005 Bytes

GetSSOUsersResponse

Properties

Name Type Description Notes
users List[APISSOUser]
status str

Example

from client.models.get_sso_users_response import GetSSOUsersResponse

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

# convert the object into a dict
get_sso_users_response_dict = get_sso_users_response_instance.to_dict()
# create an instance of GetSSOUsersResponse from a dict
get_sso_users_response_from_dict = GetSSOUsersResponse.from_dict(get_sso_users_response_dict)

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