Show / Hide Table of Contents

Class RepricingRuleStatsBasedRule

Definition of stats based rule.

Inheritance
System.Object
RepricingRuleStatsBasedRule
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ShoppingContent.v2_1.Data
Assembly: Google.Apis.ShoppingContent.v2_1.dll
Syntax
public class RepricingRuleStatsBasedRule : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

PercentageDelta

The percent change against the price target. Valid from 0 to 100 inclusively.

Declaration
[JsonProperty("percentageDelta")]
public virtual int? PercentageDelta { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PriceDelta

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.

Declaration
[JsonProperty("priceDelta")]
public virtual string PriceDelta { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top