Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.19 KB

File metadata and controls

34 lines (25 loc) · 1.19 KB

UserInfoResponse

OIDC UserInfo response

Properties

Name Type Description Notes
sub str Subject identifier. [optional]
preferred_username str Preferred username. [optional]
name str Full name. [optional]
organizations List[Organization] User organizations. [optional]
error str Error code. [optional]

Example

from flightctl.models.user_info_response import UserInfoResponse

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

# convert the object into a dict
user_info_response_dict = user_info_response_instance.to_dict()
# create an instance of UserInfoResponse from a dict
user_info_response_from_dict = UserInfoResponse.from_dict(user_info_response_dict)

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