Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

GetUserInfoResponseInfo.md

File metadata and controls

31 lines (22 loc) · 1.16 KB

GetUserInfoResponseInfo

Properties

Name Type Description Notes
need_marketing_consents_confirmation bool [optional]
need_password_change bool [optional]
need_terms_of_service_confirmation bool [optional]

Example

from fattureincloud_python_sdk.models.get_user_info_response_info import GetUserInfoResponseInfo

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

# convert the object into a dict
get_user_info_response_info_dict = get_user_info_response_info_instance.to_dict()
# create an instance of GetUserInfoResponseInfo from a dict
get_user_info_response_info_from_dict = GetUserInfoResponseInfo.from_dict(get_user_info_response_info_dict)

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