| Name | Type | Description | Notes |
|---|---|---|---|
| name | NameInformation | Structure representing the name of the user. | [optional] |
| str | The e-mail address of the user. | [optional] |
from clientapi_barion.models.user_information import UserInformation
# TODO update the JSON string below
json = "{}"
# create an instance of UserInformation from a JSON string
user_information_instance = UserInformation.from_json(json)
# print the JSON string representation of the object
print(UserInformation.to_json())
# convert the object into a dict
user_information_dict = user_information_instance.to_dict()
# create an instance of UserInformation from a dict
user_information_from_dict = UserInformation.from_dict(user_information_dict)