| Name | Type | Description | Notes |
|---|---|---|---|
| calculation_options | List[PendingByCalculationRequestCalculationOptionsInner] | An Array of Calculation Options. See the full list of supported options here. | |
| 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] |
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)