Skip to content

Latest commit

History

History
30 lines (21 loc) · 926 Bytes

File metadata and controls

30 lines (21 loc) · 926 Bytes

OrderRecipient

Properties

NameTypeDescriptionNotes
namestr[optional]
emailstr[optional]

Example

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)

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