Middle name of the user
Name | Type | Description | Notes |
---|
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)