Show / Hide Table of Contents

Class RepricingRuleCostOfGoodsSaleRule

A repricing rule that changes the sale price based on cost of goods sale.

Inheritance
System.Object
RepricingRuleCostOfGoodsSaleRule
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 RepricingRuleCostOfGoodsSaleRule : 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 COGS. Ex: 20 would mean to set the adjusted price 1.2X of the COGS data.

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

PriceDelta

The price delta against the COGS. E.g. 2 means $2 more of the COGS.

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

Implements

IDirectResponseSchema
In This Article
Back to top