Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

NameInformation

Properties

Name Type Description Notes
login_name str The login name of the user. [optional]
first_name str The first name of the user, if applicable. [optional]
last_name str The last name of the user, if applicable. [optional]
organization_name str The organization name of the user, if applicable. [optional]

Example

from clientapi_barion.models.name_information import NameInformation

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

# convert the object into a dict
name_information_dict = name_information_instance.to_dict()
# create an instance of NameInformation from a dict
name_information_from_dict = NameInformation.from_dict(name_information_dict)

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