Content API for Shopping . repricingrules

Instance Methods

repricingreports()

Returns the repricingreports Resource.

close()

Close httplib2 connections.

create(merchantId, body=None, ruleId=None, x__xgafv=None)

Creates a repricing rule for your Merchant Center account.

delete(merchantId, ruleId, x__xgafv=None)

Deletes a repricing rule in your Merchant Center account.

get(merchantId, ruleId, x__xgafv=None)

Retrieves a repricing rule from your Merchant Center account.

list(merchantId, countryCode=None, languageCode=None, pageSize=None, pageToken=None, x__xgafv=None)

Lists the repricing rules in your Merchant Center account.

list_next()

Retrieves the next page of results.

patch(merchantId, ruleId, body=None, x__xgafv=None)

Updates a repricing rule in your Merchant Center account. All mutable fields will be overwritten in each update request. In each update, you must provide all required mutable fields, or an error will be thrown. If you do not provide an optional field in the update request, if that field currently exists, it will be deleted from the rule.

Method Details

close()
Close httplib2 connections.
create(merchantId, body=None, ruleId=None, x__xgafv=None)
Creates a repricing rule for your Merchant Center account.

Args:
  merchantId: string, Required. The id of the merchant who owns the repricing rule. (required)
  body: object, The request body.
    The object takes the form of:

{ # *Deprecated*: New merchants can't start using this resource. Represents a repricing rule. A repricing rule is used by shopping serving to adjust transactable offer prices if conditions are met.
  "cogsBasedRule": { # A repricing rule that changes the sale price based on cost of goods sale. # The rule definition for TYPE_COGS_BASED. Required when the rule type is TYPE_COGS_BASED.
    "percentageDelta": 42, # The percent change against the COGS. Ex: 20 would mean to set the adjusted price 1.2X of the COGS data.
    "priceDelta": "A String", # The price delta against the COGS. For example, 2 means $2 more of the COGS.
  },
  "countryCode": "A String", # Required. Immutable. [CLDR country code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) (for example, "US").
  "effectiveTimePeriod": { # Required. Time period when the rule should take effect.
    "fixedTimePeriods": [ # A list of fixed time periods combined with OR. The maximum number of entries is limited to 5.
      { # Definition of a fixed time period.
        "endTime": "A String", # The end time (exclusive) of the period. It can only be hour granularity.
        "startTime": "A String", # The start time (inclusive) of the period. It can only be hour granularity.
      },
    ],
  },
  "eligibleOfferMatcher": { # Matcher that specifies eligible offers. When the USE_FEED_ATTRIBUTE option is selected, only the repricing_rule_id attribute on the product feed is used to specify offer-rule mapping. When the CUSTOM_FILTER option is selected, only the *_matcher fields are used to filter the offers for offer-rule mapping. If the CUSTOM_FILTER option is selected, an offer needs to satisfy each custom filter matcher to be eligible for a rule. Size limit: the sum of the number of entries in all the matchers should not exceed 20. For example, there can be 15 product ids and 5 brands, but not 10 product ids and 11 brands. # Required. Match criteria for the eligible offers.
    "brandMatcher": { # Matcher by string attributes. # Filter by the brand.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "itemGroupIdMatcher": { # Matcher by string attributes. # Filter by the item group id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "matcherOption": "A String", # Determines whether to use the custom matchers or the product feed attribute "repricing_rule_id" to specify offer-rule mapping.
    "offerIdMatcher": { # Matcher by string attributes. # Filter by the offer id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "skipWhenOnPromotion": True or False, # When true, the rule won't be applied to offers with active promotions.
  },
  "languageCode": "A String", # Required. Immutable. The two-letter ISO 639-1 language code associated with the repricing rule.
  "merchantId": "A String", # Output only. Immutable. Merchant that owns the repricing rule.
  "paused": True or False, # Represents whether a rule is paused. A paused rule will behave like a non-paused rule within CRUD operations, with the major difference that a paused rule will not be evaluated and will have no effect on offers.
  "restriction": { # Definition of a rule restriction. At least one of the following needs to be true: (1) use_auto_pricing_min_price is true (2) floor.price_delta exists (3) floor.percentage_delta exists If floor.price_delta and floor.percentage_delta are both set on a rule, the highest value will be chosen by the Repricer. In other words, for a product with a price of $50, if the `floor.percentage_delta` is "-10" and the floor.price_delta is "-12", the offer price will only be lowered $5 (10% lower than the original offer price). # Required. Restriction of the rule appliance.
    "floor": { # Definition of a boundary. # The inclusive floor lower bound. The repricing rule only applies when new price >= floor.
      "percentageDelta": 42, # The percentage delta relative to the offer selling price. This field is signed. It must be negative in floor. When it is used in floor, it should be > -100. For example, if an offer is selling at $10 and this field is -30 in floor, the repricing rule only applies if the calculated new price is >= $7.
      "priceDelta": "A String", # The price micros relative to the offer selling price. This field is signed. It must be negative in floor. For example, if an offer is selling at $10 and this field is -$2 in floor, the repricing rule only applies if the calculated new price is >= $8.
    },
    "useAutoPricingMinPrice": True or False, # If true, use the AUTO_PRICING_MIN_PRICE offer attribute as the lower bound of the rule. If use_auto_pricing_min_price is true, then only offers with `AUTO_PRICING_MIN_PRICE` existing on the offer will get Repricer treatment, even if a floor value is set on the rule. Also, if use_auto_pricing_min_price is true, the floor restriction will be ignored.
  },
  "ruleId": "A String", # Output only. Immutable. The ID to uniquely identify each repricing rule.
  "statsBasedRule": { # Definition of stats based rule. # The rule definition for TYPE_STATS_BASED. Required when the rule type is TYPE_STATS_BASED.
    "percentageDelta": 42, # The percent change against the price target. Valid from 0 to 100 inclusively.
    "priceDelta": "A String", # The price delta against the above price target. A positive value means the price should be adjusted to be above statistical measure, and a negative value means below. Currency code must not be included.
  },
  "title": "A String", # The title for the rule.
  "type": "A String", # Required. Immutable. The type of the rule.
}

  ruleId: string, Required. The id of the rule to create.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # *Deprecated*: New merchants can't start using this resource. Represents a repricing rule. A repricing rule is used by shopping serving to adjust transactable offer prices if conditions are met.
  "cogsBasedRule": { # A repricing rule that changes the sale price based on cost of goods sale. # The rule definition for TYPE_COGS_BASED. Required when the rule type is TYPE_COGS_BASED.
    "percentageDelta": 42, # The percent change against the COGS. Ex: 20 would mean to set the adjusted price 1.2X of the COGS data.
    "priceDelta": "A String", # The price delta against the COGS. For example, 2 means $2 more of the COGS.
  },
  "countryCode": "A String", # Required. Immutable. [CLDR country code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) (for example, "US").
  "effectiveTimePeriod": { # Required. Time period when the rule should take effect.
    "fixedTimePeriods": [ # A list of fixed time periods combined with OR. The maximum number of entries is limited to 5.
      { # Definition of a fixed time period.
        "endTime": "A String", # The end time (exclusive) of the period. It can only be hour granularity.
        "startTime": "A String", # The start time (inclusive) of the period. It can only be hour granularity.
      },
    ],
  },
  "eligibleOfferMatcher": { # Matcher that specifies eligible offers. When the USE_FEED_ATTRIBUTE option is selected, only the repricing_rule_id attribute on the product feed is used to specify offer-rule mapping. When the CUSTOM_FILTER option is selected, only the *_matcher fields are used to filter the offers for offer-rule mapping. If the CUSTOM_FILTER option is selected, an offer needs to satisfy each custom filter matcher to be eligible for a rule. Size limit: the sum of the number of entries in all the matchers should not exceed 20. For example, there can be 15 product ids and 5 brands, but not 10 product ids and 11 brands. # Required. Match criteria for the eligible offers.
    "brandMatcher": { # Matcher by string attributes. # Filter by the brand.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "itemGroupIdMatcher": { # Matcher by string attributes. # Filter by the item group id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "matcherOption": "A String", # Determines whether to use the custom matchers or the product feed attribute "repricing_rule_id" to specify offer-rule mapping.
    "offerIdMatcher": { # Matcher by string attributes. # Filter by the offer id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "skipWhenOnPromotion": True or False, # When true, the rule won't be applied to offers with active promotions.
  },
  "languageCode": "A String", # Required. Immutable. The two-letter ISO 639-1 language code associated with the repricing rule.
  "merchantId": "A String", # Output only. Immutable. Merchant that owns the repricing rule.
  "paused": True or False, # Represents whether a rule is paused. A paused rule will behave like a non-paused rule within CRUD operations, with the major difference that a paused rule will not be evaluated and will have no effect on offers.
  "restriction": { # Definition of a rule restriction. At least one of the following needs to be true: (1) use_auto_pricing_min_price is true (2) floor.price_delta exists (3) floor.percentage_delta exists If floor.price_delta and floor.percentage_delta are both set on a rule, the highest value will be chosen by the Repricer. In other words, for a product with a price of $50, if the `floor.percentage_delta` is "-10" and the floor.price_delta is "-12", the offer price will only be lowered $5 (10% lower than the original offer price). # Required. Restriction of the rule appliance.
    "floor": { # Definition of a boundary. # The inclusive floor lower bound. The repricing rule only applies when new price >= floor.
      "percentageDelta": 42, # The percentage delta relative to the offer selling price. This field is signed. It must be negative in floor. When it is used in floor, it should be > -100. For example, if an offer is selling at $10 and this field is -30 in floor, the repricing rule only applies if the calculated new price is >= $7.
      "priceDelta": "A String", # The price micros relative to the offer selling price. This field is signed. It must be negative in floor. For example, if an offer is selling at $10 and this field is -$2 in floor, the repricing rule only applies if the calculated new price is >= $8.
    },
    "useAutoPricingMinPrice": True or False, # If true, use the AUTO_PRICING_MIN_PRICE offer attribute as the lower bound of the rule. If use_auto_pricing_min_price is true, then only offers with `AUTO_PRICING_MIN_PRICE` existing on the offer will get Repricer treatment, even if a floor value is set on the rule. Also, if use_auto_pricing_min_price is true, the floor restriction will be ignored.
  },
  "ruleId": "A String", # Output only. Immutable. The ID to uniquely identify each repricing rule.
  "statsBasedRule": { # Definition of stats based rule. # The rule definition for TYPE_STATS_BASED. Required when the rule type is TYPE_STATS_BASED.
    "percentageDelta": 42, # The percent change against the price target. Valid from 0 to 100 inclusively.
    "priceDelta": "A String", # The price delta against the above price target. A positive value means the price should be adjusted to be above statistical measure, and a negative value means below. Currency code must not be included.
  },
  "title": "A String", # The title for the rule.
  "type": "A String", # Required. Immutable. The type of the rule.
}
delete(merchantId, ruleId, x__xgafv=None)
Deletes a repricing rule in your Merchant Center account.

Args:
  merchantId: string, Required. The id of the merchant who owns the repricing rule. (required)
  ruleId: string, Required. The id of the rule to Delete. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format
get(merchantId, ruleId, x__xgafv=None)
Retrieves a repricing rule from your Merchant Center account.

Args:
  merchantId: string, Required. The id of the merchant who owns the repricing rule. (required)
  ruleId: string, Required. The id of the rule to retrieve. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # *Deprecated*: New merchants can't start using this resource. Represents a repricing rule. A repricing rule is used by shopping serving to adjust transactable offer prices if conditions are met.
  "cogsBasedRule": { # A repricing rule that changes the sale price based on cost of goods sale. # The rule definition for TYPE_COGS_BASED. Required when the rule type is TYPE_COGS_BASED.
    "percentageDelta": 42, # The percent change against the COGS. Ex: 20 would mean to set the adjusted price 1.2X of the COGS data.
    "priceDelta": "A String", # The price delta against the COGS. For example, 2 means $2 more of the COGS.
  },
  "countryCode": "A String", # Required. Immutable. [CLDR country code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) (for example, "US").
  "effectiveTimePeriod": { # Required. Time period when the rule should take effect.
    "fixedTimePeriods": [ # A list of fixed time periods combined with OR. The maximum number of entries is limited to 5.
      { # Definition of a fixed time period.
        "endTime": "A String", # The end time (exclusive) of the period. It can only be hour granularity.
        "startTime": "A String", # The start time (inclusive) of the period. It can only be hour granularity.
      },
    ],
  },
  "eligibleOfferMatcher": { # Matcher that specifies eligible offers. When the USE_FEED_ATTRIBUTE option is selected, only the repricing_rule_id attribute on the product feed is used to specify offer-rule mapping. When the CUSTOM_FILTER option is selected, only the *_matcher fields are used to filter the offers for offer-rule mapping. If the CUSTOM_FILTER option is selected, an offer needs to satisfy each custom filter matcher to be eligible for a rule. Size limit: the sum of the number of entries in all the matchers should not exceed 20. For example, there can be 15 product ids and 5 brands, but not 10 product ids and 11 brands. # Required. Match criteria for the eligible offers.
    "brandMatcher": { # Matcher by string attributes. # Filter by the brand.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "itemGroupIdMatcher": { # Matcher by string attributes. # Filter by the item group id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "matcherOption": "A String", # Determines whether to use the custom matchers or the product feed attribute "repricing_rule_id" to specify offer-rule mapping.
    "offerIdMatcher": { # Matcher by string attributes. # Filter by the offer id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "skipWhenOnPromotion": True or False, # When true, the rule won't be applied to offers with active promotions.
  },
  "languageCode": "A String", # Required. Immutable. The two-letter ISO 639-1 language code associated with the repricing rule.
  "merchantId": "A String", # Output only. Immutable. Merchant that owns the repricing rule.
  "paused": True or False, # Represents whether a rule is paused. A paused rule will behave like a non-paused rule within CRUD operations, with the major difference that a paused rule will not be evaluated and will have no effect on offers.
  "restriction": { # Definition of a rule restriction. At least one of the following needs to be true: (1) use_auto_pricing_min_price is true (2) floor.price_delta exists (3) floor.percentage_delta exists If floor.price_delta and floor.percentage_delta are both set on a rule, the highest value will be chosen by the Repricer. In other words, for a product with a price of $50, if the `floor.percentage_delta` is "-10" and the floor.price_delta is "-12", the offer price will only be lowered $5 (10% lower than the original offer price). # Required. Restriction of the rule appliance.
    "floor": { # Definition of a boundary. # The inclusive floor lower bound. The repricing rule only applies when new price >= floor.
      "percentageDelta": 42, # The percentage delta relative to the offer selling price. This field is signed. It must be negative in floor. When it is used in floor, it should be > -100. For example, if an offer is selling at $10 and this field is -30 in floor, the repricing rule only applies if the calculated new price is >= $7.
      "priceDelta": "A String", # The price micros relative to the offer selling price. This field is signed. It must be negative in floor. For example, if an offer is selling at $10 and this field is -$2 in floor, the repricing rule only applies if the calculated new price is >= $8.
    },
    "useAutoPricingMinPrice": True or False, # If true, use the AUTO_PRICING_MIN_PRICE offer attribute as the lower bound of the rule. If use_auto_pricing_min_price is true, then only offers with `AUTO_PRICING_MIN_PRICE` existing on the offer will get Repricer treatment, even if a floor value is set on the rule. Also, if use_auto_pricing_min_price is true, the floor restriction will be ignored.
  },
  "ruleId": "A String", # Output only. Immutable. The ID to uniquely identify each repricing rule.
  "statsBasedRule": { # Definition of stats based rule. # The rule definition for TYPE_STATS_BASED. Required when the rule type is TYPE_STATS_BASED.
    "percentageDelta": 42, # The percent change against the price target. Valid from 0 to 100 inclusively.
    "priceDelta": "A String", # The price delta against the above price target. A positive value means the price should be adjusted to be above statistical measure, and a negative value means below. Currency code must not be included.
  },
  "title": "A String", # The title for the rule.
  "type": "A String", # Required. Immutable. The type of the rule.
}
list(merchantId, countryCode=None, languageCode=None, pageSize=None, pageToken=None, x__xgafv=None)
Lists the repricing rules in your Merchant Center account.

Args:
  merchantId: string, Required. The id of the merchant who owns the repricing rule. (required)
  countryCode: string, [CLDR country code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) (for example, "US"), used as a filter on repricing rules.
  languageCode: string, The two-letter ISO 639-1 language code associated with the repricing rule, used as a filter.
  pageSize: integer, The maximum number of repricing rules to return. The service may return fewer than this value. If unspecified, at most 50 rules will be returned. The maximum value is 1000; values above 1000 will be coerced to 1000.
  pageToken: string, A page token, received from a previous `ListRepricingRules` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListRepricingRules` must match the call that provided the page token.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response message for the `ListRepricingRules` method.
  "nextPageToken": "A String", # A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages.
  "repricingRules": [ # The rules from the specified merchant.
    { # *Deprecated*: New merchants can't start using this resource. Represents a repricing rule. A repricing rule is used by shopping serving to adjust transactable offer prices if conditions are met.
      "cogsBasedRule": { # A repricing rule that changes the sale price based on cost of goods sale. # The rule definition for TYPE_COGS_BASED. Required when the rule type is TYPE_COGS_BASED.
        "percentageDelta": 42, # The percent change against the COGS. Ex: 20 would mean to set the adjusted price 1.2X of the COGS data.
        "priceDelta": "A String", # The price delta against the COGS. For example, 2 means $2 more of the COGS.
      },
      "countryCode": "A String", # Required. Immutable. [CLDR country code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) (for example, "US").
      "effectiveTimePeriod": { # Required. Time period when the rule should take effect.
        "fixedTimePeriods": [ # A list of fixed time periods combined with OR. The maximum number of entries is limited to 5.
          { # Definition of a fixed time period.
            "endTime": "A String", # The end time (exclusive) of the period. It can only be hour granularity.
            "startTime": "A String", # The start time (inclusive) of the period. It can only be hour granularity.
          },
        ],
      },
      "eligibleOfferMatcher": { # Matcher that specifies eligible offers. When the USE_FEED_ATTRIBUTE option is selected, only the repricing_rule_id attribute on the product feed is used to specify offer-rule mapping. When the CUSTOM_FILTER option is selected, only the *_matcher fields are used to filter the offers for offer-rule mapping. If the CUSTOM_FILTER option is selected, an offer needs to satisfy each custom filter matcher to be eligible for a rule. Size limit: the sum of the number of entries in all the matchers should not exceed 20. For example, there can be 15 product ids and 5 brands, but not 10 product ids and 11 brands. # Required. Match criteria for the eligible offers.
        "brandMatcher": { # Matcher by string attributes. # Filter by the brand.
          "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
            "A String",
          ],
        },
        "itemGroupIdMatcher": { # Matcher by string attributes. # Filter by the item group id.
          "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
            "A String",
          ],
        },
        "matcherOption": "A String", # Determines whether to use the custom matchers or the product feed attribute "repricing_rule_id" to specify offer-rule mapping.
        "offerIdMatcher": { # Matcher by string attributes. # Filter by the offer id.
          "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
            "A String",
          ],
        },
        "skipWhenOnPromotion": True or False, # When true, the rule won't be applied to offers with active promotions.
      },
      "languageCode": "A String", # Required. Immutable. The two-letter ISO 639-1 language code associated with the repricing rule.
      "merchantId": "A String", # Output only. Immutable. Merchant that owns the repricing rule.
      "paused": True or False, # Represents whether a rule is paused. A paused rule will behave like a non-paused rule within CRUD operations, with the major difference that a paused rule will not be evaluated and will have no effect on offers.
      "restriction": { # Definition of a rule restriction. At least one of the following needs to be true: (1) use_auto_pricing_min_price is true (2) floor.price_delta exists (3) floor.percentage_delta exists If floor.price_delta and floor.percentage_delta are both set on a rule, the highest value will be chosen by the Repricer. In other words, for a product with a price of $50, if the `floor.percentage_delta` is "-10" and the floor.price_delta is "-12", the offer price will only be lowered $5 (10% lower than the original offer price). # Required. Restriction of the rule appliance.
        "floor": { # Definition of a boundary. # The inclusive floor lower bound. The repricing rule only applies when new price >= floor.
          "percentageDelta": 42, # The percentage delta relative to the offer selling price. This field is signed. It must be negative in floor. When it is used in floor, it should be > -100. For example, if an offer is selling at $10 and this field is -30 in floor, the repricing rule only applies if the calculated new price is >= $7.
          "priceDelta": "A String", # The price micros relative to the offer selling price. This field is signed. It must be negative in floor. For example, if an offer is selling at $10 and this field is -$2 in floor, the repricing rule only applies if the calculated new price is >= $8.
        },
        "useAutoPricingMinPrice": True or False, # If true, use the AUTO_PRICING_MIN_PRICE offer attribute as the lower bound of the rule. If use_auto_pricing_min_price is true, then only offers with `AUTO_PRICING_MIN_PRICE` existing on the offer will get Repricer treatment, even if a floor value is set on the rule. Also, if use_auto_pricing_min_price is true, the floor restriction will be ignored.
      },
      "ruleId": "A String", # Output only. Immutable. The ID to uniquely identify each repricing rule.
      "statsBasedRule": { # Definition of stats based rule. # The rule definition for TYPE_STATS_BASED. Required when the rule type is TYPE_STATS_BASED.
        "percentageDelta": 42, # The percent change against the price target. Valid from 0 to 100 inclusively.
        "priceDelta": "A String", # The price delta against the above price target. A positive value means the price should be adjusted to be above statistical measure, and a negative value means below. Currency code must not be included.
      },
      "title": "A String", # The title for the rule.
      "type": "A String", # Required. Immutable. The type of the rule.
    },
  ],
}
list_next()
Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call 'execute()' on to request the next
          page. Returns None if there are no more items in the collection.
        
patch(merchantId, ruleId, body=None, x__xgafv=None)
Updates a repricing rule in your Merchant Center account. All mutable fields will be overwritten in each update request. In each update, you must provide all required mutable fields, or an error will be thrown. If you do not provide an optional field in the update request, if that field currently exists, it will be deleted from the rule.

Args:
  merchantId: string, Required. The id of the merchant who owns the repricing rule. (required)
  ruleId: string, Required. The id of the rule to update. (required)
  body: object, The request body.
    The object takes the form of:

{ # *Deprecated*: New merchants can't start using this resource. Represents a repricing rule. A repricing rule is used by shopping serving to adjust transactable offer prices if conditions are met.
  "cogsBasedRule": { # A repricing rule that changes the sale price based on cost of goods sale. # The rule definition for TYPE_COGS_BASED. Required when the rule type is TYPE_COGS_BASED.
    "percentageDelta": 42, # The percent change against the COGS. Ex: 20 would mean to set the adjusted price 1.2X of the COGS data.
    "priceDelta": "A String", # The price delta against the COGS. For example, 2 means $2 more of the COGS.
  },
  "countryCode": "A String", # Required. Immutable. [CLDR country code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) (for example, "US").
  "effectiveTimePeriod": { # Required. Time period when the rule should take effect.
    "fixedTimePeriods": [ # A list of fixed time periods combined with OR. The maximum number of entries is limited to 5.
      { # Definition of a fixed time period.
        "endTime": "A String", # The end time (exclusive) of the period. It can only be hour granularity.
        "startTime": "A String", # The start time (inclusive) of the period. It can only be hour granularity.
      },
    ],
  },
  "eligibleOfferMatcher": { # Matcher that specifies eligible offers. When the USE_FEED_ATTRIBUTE option is selected, only the repricing_rule_id attribute on the product feed is used to specify offer-rule mapping. When the CUSTOM_FILTER option is selected, only the *_matcher fields are used to filter the offers for offer-rule mapping. If the CUSTOM_FILTER option is selected, an offer needs to satisfy each custom filter matcher to be eligible for a rule. Size limit: the sum of the number of entries in all the matchers should not exceed 20. For example, there can be 15 product ids and 5 brands, but not 10 product ids and 11 brands. # Required. Match criteria for the eligible offers.
    "brandMatcher": { # Matcher by string attributes. # Filter by the brand.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "itemGroupIdMatcher": { # Matcher by string attributes. # Filter by the item group id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "matcherOption": "A String", # Determines whether to use the custom matchers or the product feed attribute "repricing_rule_id" to specify offer-rule mapping.
    "offerIdMatcher": { # Matcher by string attributes. # Filter by the offer id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "skipWhenOnPromotion": True or False, # When true, the rule won't be applied to offers with active promotions.
  },
  "languageCode": "A String", # Required. Immutable. The two-letter ISO 639-1 language code associated with the repricing rule.
  "merchantId": "A String", # Output only. Immutable. Merchant that owns the repricing rule.
  "paused": True or False, # Represents whether a rule is paused. A paused rule will behave like a non-paused rule within CRUD operations, with the major difference that a paused rule will not be evaluated and will have no effect on offers.
  "restriction": { # Definition of a rule restriction. At least one of the following needs to be true: (1) use_auto_pricing_min_price is true (2) floor.price_delta exists (3) floor.percentage_delta exists If floor.price_delta and floor.percentage_delta are both set on a rule, the highest value will be chosen by the Repricer. In other words, for a product with a price of $50, if the `floor.percentage_delta` is "-10" and the floor.price_delta is "-12", the offer price will only be lowered $5 (10% lower than the original offer price). # Required. Restriction of the rule appliance.
    "floor": { # Definition of a boundary. # The inclusive floor lower bound. The repricing rule only applies when new price >= floor.
      "percentageDelta": 42, # The percentage delta relative to the offer selling price. This field is signed. It must be negative in floor. When it is used in floor, it should be > -100. For example, if an offer is selling at $10 and this field is -30 in floor, the repricing rule only applies if the calculated new price is >= $7.
      "priceDelta": "A String", # The price micros relative to the offer selling price. This field is signed. It must be negative in floor. For example, if an offer is selling at $10 and this field is -$2 in floor, the repricing rule only applies if the calculated new price is >= $8.
    },
    "useAutoPricingMinPrice": True or False, # If true, use the AUTO_PRICING_MIN_PRICE offer attribute as the lower bound of the rule. If use_auto_pricing_min_price is true, then only offers with `AUTO_PRICING_MIN_PRICE` existing on the offer will get Repricer treatment, even if a floor value is set on the rule. Also, if use_auto_pricing_min_price is true, the floor restriction will be ignored.
  },
  "ruleId": "A String", # Output only. Immutable. The ID to uniquely identify each repricing rule.
  "statsBasedRule": { # Definition of stats based rule. # The rule definition for TYPE_STATS_BASED. Required when the rule type is TYPE_STATS_BASED.
    "percentageDelta": 42, # The percent change against the price target. Valid from 0 to 100 inclusively.
    "priceDelta": "A String", # The price delta against the above price target. A positive value means the price should be adjusted to be above statistical measure, and a negative value means below. Currency code must not be included.
  },
  "title": "A String", # The title for the rule.
  "type": "A String", # Required. Immutable. The type of the rule.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # *Deprecated*: New merchants can't start using this resource. Represents a repricing rule. A repricing rule is used by shopping serving to adjust transactable offer prices if conditions are met.
  "cogsBasedRule": { # A repricing rule that changes the sale price based on cost of goods sale. # The rule definition for TYPE_COGS_BASED. Required when the rule type is TYPE_COGS_BASED.
    "percentageDelta": 42, # The percent change against the COGS. Ex: 20 would mean to set the adjusted price 1.2X of the COGS data.
    "priceDelta": "A String", # The price delta against the COGS. For example, 2 means $2 more of the COGS.
  },
  "countryCode": "A String", # Required. Immutable. [CLDR country code](http://www.unicode.org/repos/cldr/tags/latest/common/main/en.xml) (for example, "US").
  "effectiveTimePeriod": { # Required. Time period when the rule should take effect.
    "fixedTimePeriods": [ # A list of fixed time periods combined with OR. The maximum number of entries is limited to 5.
      { # Definition of a fixed time period.
        "endTime": "A String", # The end time (exclusive) of the period. It can only be hour granularity.
        "startTime": "A String", # The start time (inclusive) of the period. It can only be hour granularity.
      },
    ],
  },
  "eligibleOfferMatcher": { # Matcher that specifies eligible offers. When the USE_FEED_ATTRIBUTE option is selected, only the repricing_rule_id attribute on the product feed is used to specify offer-rule mapping. When the CUSTOM_FILTER option is selected, only the *_matcher fields are used to filter the offers for offer-rule mapping. If the CUSTOM_FILTER option is selected, an offer needs to satisfy each custom filter matcher to be eligible for a rule. Size limit: the sum of the number of entries in all the matchers should not exceed 20. For example, there can be 15 product ids and 5 brands, but not 10 product ids and 11 brands. # Required. Match criteria for the eligible offers.
    "brandMatcher": { # Matcher by string attributes. # Filter by the brand.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "itemGroupIdMatcher": { # Matcher by string attributes. # Filter by the item group id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "matcherOption": "A String", # Determines whether to use the custom matchers or the product feed attribute "repricing_rule_id" to specify offer-rule mapping.
    "offerIdMatcher": { # Matcher by string attributes. # Filter by the offer id.
      "strAttributes": [ # String attributes, as long as such attribute of an offer is one of the string attribute values, the offer is considered as passing the matcher. The string matcher checks an offer for inclusivity in the string attributes, not equality. Only literal string matching is supported, no regular expressions.
        "A String",
      ],
    },
    "skipWhenOnPromotion": True or False, # When true, the rule won't be applied to offers with active promotions.
  },
  "languageCode": "A String", # Required. Immutable. The two-letter ISO 639-1 language code associated with the repricing rule.
  "merchantId": "A String", # Output only. Immutable. Merchant that owns the repricing rule.
  "paused": True or False, # Represents whether a rule is paused. A paused rule will behave like a non-paused rule within CRUD operations, with the major difference that a paused rule will not be evaluated and will have no effect on offers.
  "restriction": { # Definition of a rule restriction. At least one of the following needs to be true: (1) use_auto_pricing_min_price is true (2) floor.price_delta exists (3) floor.percentage_delta exists If floor.price_delta and floor.percentage_delta are both set on a rule, the highest value will be chosen by the Repricer. In other words, for a product with a price of $50, if the `floor.percentage_delta` is "-10" and the floor.price_delta is "-12", the offer price will only be lowered $5 (10% lower than the original offer price). # Required. Restriction of the rule appliance.
    "floor": { # Definition of a boundary. # The inclusive floor lower bound. The repricing rule only applies when new price >= floor.
      "percentageDelta": 42, # The percentage delta relative to the offer selling price. This field is signed. It must be negative in floor. When it is used in floor, it should be > -100. For example, if an offer is selling at $10 and this field is -30 in floor, the repricing rule only applies if the calculated new price is >= $7.
      "priceDelta": "A String", # The price micros relative to the offer selling price. This field is signed. It must be negative in floor. For example, if an offer is selling at $10 and this field is -$2 in floor, the repricing rule only applies if the calculated new price is >= $8.
    },
    "useAutoPricingMinPrice": True or False, # If true, use the AUTO_PRICING_MIN_PRICE offer attribute as the lower bound of the rule. If use_auto_pricing_min_price is true, then only offers with `AUTO_PRICING_MIN_PRICE` existing on the offer will get Repricer treatment, even if a floor value is set on the rule. Also, if use_auto_pricing_min_price is true, the floor restriction will be ignored.
  },
  "ruleId": "A String", # Output only. Immutable. The ID to uniquely identify each repricing rule.
  "statsBasedRule": { # Definition of stats based rule. # The rule definition for TYPE_STATS_BASED. Required when the rule type is TYPE_STATS_BASED.
    "percentageDelta": 42, # The percent change against the price target. Valid from 0 to 100 inclusively.
    "priceDelta": "A String", # The price delta against the above price target. A positive value means the price should be adjusted to be above statistical measure, and a negative value means below. Currency code must not be included.
  },
  "title": "A String", # The title for the rule.
  "type": "A String", # Required. Immutable. The type of the rule.
}