Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Latest commit

 

History

History
24 lines (18 loc) · 2.9 KB

CatalogPricingRule.md

File metadata and controls

24 lines (18 loc) · 2.9 KB

CatalogPricingRule

squareconnect.models.catalog_pricing_rule

Description

Defines how prices are modified or set for items that match the pricing rule during the active time period.

Properties

Name Type Description Notes
name str User-defined name for the pricing rule. For example, "Buy one get one free" or "10% off". [optional]
time_period_ids list[str] Unique ID for the CatalogTimePeriods when this pricing rule is in effect. If left unset, the pricing rule is always in effect. [optional]
discount_id str Unique ID for the CatalogDiscount to take off the price of all matched items. Only one of `total_price_money`, `item_price`, or `discount` can be supplied. [optional]
match_products_id str Unique ID for the CatalogProductSet that will be matched by this rule. A match rule matches within the entire cart. [optional]
apply_products_id str The CatalogProductSet to apply the pricing rule to within the set of matched products specified by `match_products_id`. An apply rule can only match once within the set of matched products. If left unset, the pricing rule will be applied to all products within the set of matched products. [optional]
exclude_products_id str Identifies the CatalogProductSet to exclude from this pricing rule. An exclude rule matches within the subset of the cart that fits the match rules (the match set). An exclude rule can only match once in the match set. If not supplied, the pricing will be applied to all products in the match set. Other products retain their base price, or a price generated by other rules. [optional]
valid_from_date str Represents the date the Pricing Rule is valid from. Represented in RFC3339 full-date format (YYYY-MM-DD). [optional]
valid_from_local_time str Represents the local time the pricing rule should be valid from. Time zone is determined by the device running the Point of Sale app. Represented in RFC3339 partial-time format (HH:MM:SS). Partial seconds will be truncated. [optional]
valid_until_date str Represents the date the pricing rule will become inactive. Represented in RFC3339 full-date format (YYYY-MM-DD). [optional]
valid_until_local_time str Represents the local time at which the pricing rule will become inactive. Time zone is determined by the device running the Point of Sale app. Represented in RFC3339 partial-time format (HH:MM:SS). Partial seconds will be truncated. [optional]

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