Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 834 Bytes

MiddleName.md

File metadata and controls

29 lines (20 loc) · 834 Bytes

MiddleName

Middle name of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.middle_name import MiddleName

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

# convert the object into a dict
middle_name_dict = middle_name_instance.to_dict()
# create an instance of MiddleName from a dict
middle_name_form_dict = middle_name.from_dict(middle_name_dict)

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