You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Minimum Advertised Price (MAP). If required by the vendor, resellers can not sell below MAP price.
[optional]
customer_price
float
The price customer pays after all special pricing and discounts have been applied.
[optional]
special_bid_pricing_available
bool
Boolean values specifies whether special Bid discounts are available for the product.
[optional]
web_discounts_available
bool
Boolean values specifies whether web Discounts are available for the product.
[optional]
Example
fromxi.sdk.resellers.models.price_and_availability_response_inner_pricingimportPriceAndAvailabilityResponseInnerPricing# TODO update the JSON string belowjson="{}"# create an instance of PriceAndAvailabilityResponseInnerPricing from a JSON stringprice_and_availability_response_inner_pricing_instance=PriceAndAvailabilityResponseInnerPricing.from_json(json)
# print the JSON string representation of the objectprint(PriceAndAvailabilityResponseInnerPricing.to_json())
# convert the object into a dictprice_and_availability_response_inner_pricing_dict=price_and_availability_response_inner_pricing_instance.to_dict()
# create an instance of PriceAndAvailabilityResponseInnerPricing from a dictprice_and_availability_response_inner_pricing_from_dict=PriceAndAvailabilityResponseInnerPricing.from_dict(price_and_availability_response_inner_pricing_dict)