Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.46 KB

File metadata and controls

30 lines (21 loc) · 1.46 KB

CalculateRequest

Properties

NameTypeDescriptionNotes
calculation_optionsList[PendingByCalculationRequestCalculationOptionsInner]An Array of Calculation Options. See the full list of supported options here.
fractional_digitsintNormally, 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

fromklimapi_python.models.calculate_requestimportCalculateRequest# TODO update the JSON string belowjson="{}"# create an instance of CalculateRequest from a JSON stringcalculate_request_instance=CalculateRequest.from_json(json)
# print the JSON string representation of the objectprint(CalculateRequest.to_json())
# convert the object into a dictcalculate_request_dict=calculate_request_instance.to_dict()
# create an instance of CalculateRequest from a dictcalculate_request_from_dict=CalculateRequest.from_dict(calculate_request_dict)

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