Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.24 KB

File metadata and controls

31 lines (22 loc) · 1.24 KB

AuthserverGetUserResponse

Response parameters for get privillage.

Properties

Name Type Description Notes
feature_flags Dict[str, Featureflagsv3FeatureFlagValue] Feature flags map. [optional]
user Tenantuserv3FullUser [optional]

Example

from ibm_gdsc_sdk_saas.models.authserver_get_user_response import AuthserverGetUserResponse

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

# convert the object into a dict
authserver_get_user_response_dict = authserver_get_user_response_instance.to_dict()
# create an instance of AuthserverGetUserResponse from a dict
authserver_get_user_response_from_dict = AuthserverGetUserResponse.from_dict(authserver_get_user_response_dict)

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