| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| str | [optional] |
fromklimapi_python.models.order_recipientimportOrderRecipient# TODO update the JSON string belowjson="{}"# create an instance of OrderRecipient from a JSON stringorder_recipient_instance=OrderRecipient.from_json(json)
# print the JSON string representation of the objectprint(OrderRecipient.to_json())
# convert the object into a dictorder_recipient_dict=order_recipient_instance.to_dict()
# create an instance of OrderRecipient from a dictorder_recipient_from_dict=OrderRecipient.from_dict(order_recipient_dict)