Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

BestPriorPriceMetadata

Auxiliary data for found price observation.

Properties

Name Type Description Notes
influencing_campaign_details List[InfluencingCampaignDetails] Details about campaigns that influenced the final price.
adjustment_details AdjustmentDetails Details about the applied price adjustment. [optional]

Example

from talon_one.models.best_prior_price_metadata import BestPriorPriceMetadata

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

# convert the object into a dict
best_prior_price_metadata_dict = best_prior_price_metadata_instance.to_dict()
# create an instance of BestPriorPriceMetadata from a dict
best_prior_price_metadata_from_dict = BestPriorPriceMetadata.from_dict(best_prior_price_metadata_dict)

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