| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| first_name | str | [optional] | |
| last_name | str | [optional] | |
| str | [optional] | ||
| type | RecipientType | [optional] | |
| company_name | str | [optional] |
from cloudbeds_fiscal_document.models.recipient_details import RecipientDetails
# TODO update the JSON string below
json = "{}"
# create an instance of RecipientDetails from a JSON string
recipient_details_instance = RecipientDetails.from_json(json)
# print the JSON string representation of the object
print(RecipientDetails.to_json())
# convert the object into a dict
recipient_details_dict = recipient_details_instance.to_dict()
# create an instance of RecipientDetails from a dict
recipient_details_from_dict = RecipientDetails.from_dict(recipient_details_dict)