OIDC UserInfo response
| 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] |
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)