Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.94 KB

File metadata and controls

32 lines (23 loc) · 1.94 KB

PendingByCalculationRequest

Properties

Name Type Description Notes
calculation_options List[PendingByCalculationRequestCalculationOptionsInner] An Array of Calculation Options. See the full list of supported options here.
order_count int The amount of pending Orders you want to receive. This is especially useful if you want to offer your customers several different projects for their compensation. [optional] [default to 1]
metadata Dict[str, str] Add additional queryable information to the order as key-value pairs [optional]
fractional_digits int Normally, the calculation results are rounded to the nearest whole number. Specify here how many decimal places you would like to receive in addition. This only applies to calculation results, compensations are always made in whole kilograms [optional] [default to 2]

Example

from klimapi_python.models.pending_by_calculation_request import PendingByCalculationRequest

# TODO update the JSON string below
json = "{}"
# create an instance of PendingByCalculationRequest from a JSON string
pending_by_calculation_request_instance = PendingByCalculationRequest.from_json(json)
# print the JSON string representation of the object
print(PendingByCalculationRequest.to_json())

# convert the object into a dict
pending_by_calculation_request_dict = pending_by_calculation_request_instance.to_dict()
# create an instance of PendingByCalculationRequest from a dict
pending_by_calculation_request_from_dict = PendingByCalculationRequest.from_dict(pending_by_calculation_request_dict)

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