Auxiliary data for found price observation.
| 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] |
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)