Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 820 Bytes

File metadata and controls

29 lines (20 loc) · 820 Bytes

FirstName

First name of the user

Properties

Name Type Description Notes

Example

from onelens_backend_client.models.first_name import FirstName

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

# convert the object into a dict
first_name_dict = first_name_instance.to_dict()
# create an instance of FirstName from a dict
first_name_form_dict = first_name.from_dict(first_name_dict)

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