Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.19 KB

GetUserInfoResponse.md

File metadata and controls

32 lines (22 loc) · 1.19 KB

GetUserInfoResponse

Properties

Name Type Description Notes
data User [optional]
info GetUserInfoResponseInfo [optional]
email_confirmation_state GetUserInfoResponseEmailConfirmationState [optional]

Example

from fattureincloud_python_sdk.models.get_user_info_response import GetUserInfoResponse

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

# convert the object into a dict
get_user_info_response_dict = get_user_info_response_instance.to_dict()
# create an instance of GetUserInfoResponse from a dict
get_user_info_response_from_dict = GetUserInfoResponse.from_dict(get_user_info_response_dict)

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