Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.24 KB

File metadata and controls

30 lines (21 loc) · 1.24 KB

BestPriorPriceSettings

The best prior price settings for this Application.

Properties

Name Type Description Notes
enable_best_prior_price bool When set to `true`, the best prior price feature is enabled in this Application and its price history is recorded. [optional]

Example

from talon_one.models.best_prior_price_settings import BestPriorPriceSettings

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

# convert the object into a dict
best_prior_price_settings_dict = best_prior_price_settings_instance.to_dict()
# create an instance of BestPriorPriceSettings from a dict
best_prior_price_settings_from_dict = BestPriorPriceSettings.from_dict(best_prior_price_settings_dict)

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