Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.14 KB

File metadata and controls

31 lines (22 loc) · 1.14 KB

CartResultSettings

The settings used for the calculation

Properties

Name Type Description Notes
split int The default split of the compensation between the customer and the store in percent [optional]
default bool Specifies whether compensation should be selected by default [optional]

Example

from klimapi_python.models.cart_result_settings import CartResultSettings

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

# convert the object into a dict
cart_result_settings_dict = cart_result_settings_instance.to_dict()
# create an instance of CartResultSettings from a dict
cart_result_settings_from_dict = CartResultSettings.from_dict(cart_result_settings_dict)

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