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