Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.11 KB

File metadata and controls

29 lines (20 loc) · 1.11 KB

Tenantuserv3GetRolesResponse

Properties

Name Type Description Notes
roles List[Tenantuserv3Role] Roles found. [optional]

Example

from ibm_gdsc_sdk_saas.models.tenantuserv3_get_roles_response import Tenantuserv3GetRolesResponse

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

# convert the object into a dict
tenantuserv3_get_roles_response_dict = tenantuserv3_get_roles_response_instance.to_dict()
# create an instance of Tenantuserv3GetRolesResponse from a dict
tenantuserv3_get_roles_response_from_dict = Tenantuserv3GetRolesResponse.from_dict(tenantuserv3_get_roles_response_dict)

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