Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.31 KB

GetUserHistoryResponseWithErrorMessages.md

File metadata and controls

30 lines (21 loc) · 1.31 KB

GetUserHistoryResponseWithErrorMessages

Properties

Name Type Description Notes
user_history List[UserHistory] [optional]
errors List[Error] [optional]

Example

from clientapi_barion.models.get_user_history_response_with_error_messages import GetUserHistoryResponseWithErrorMessages

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

# convert the object into a dict
get_user_history_response_with_error_messages_dict = get_user_history_response_with_error_messages_instance.to_dict()
# create an instance of GetUserHistoryResponseWithErrorMessages from a dict
get_user_history_response_with_error_messages_from_dict = GetUserHistoryResponseWithErrorMessages.from_dict(get_user_history_response_with_error_messages_dict)

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