Skip to content

Latest commit

History

History
32 lines (23 loc) · 1.31 KB

File metadata and controls

32 lines (23 loc) · 1.31 KB

ProcessOrder

Properties

NameTypeDescriptionNotes
recipient_namestrThe name which should be associated with the compensation
recipient_emailstrIf a valid e-mail address is provided, we will send the certificate to this address[optional]
send_atdatetimeTimestamp of when the certificate should be send to the customer in ISO 8601 format (UTC). Defaults to the current timestamp.[optional]
metadataDict[str, str]Add additional queryable information to the order as key-value pairs[optional]

Example

fromklimapi_python.models.process_orderimportProcessOrder# TODO update the JSON string belowjson="{}"# create an instance of ProcessOrder from a JSON stringprocess_order_instance=ProcessOrder.from_json(json)
# print the JSON string representation of the objectprint(ProcessOrder.to_json())
# convert the object into a dictprocess_order_dict=process_order_instance.to_dict()
# create an instance of ProcessOrder from a dictprocess_order_from_dict=ProcessOrder.from_dict(process_order_dict)

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