Show / Hide Table of Contents

Class GoogleCloudRetailV2PriceInfo

The price information of a Product.

Inheritance
System.Object
GoogleCloudRetailV2PriceInfo
Implements
Google.Apis.Requests.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.CloudRetail.v2.Data
Assembly: Google.Apis.CloudRetail.v2.dll
Syntax
public class GoogleCloudRetailV2PriceInfo : IDirectResponseSchema

Properties

Cost

The costs associated with the sale of a particular product. Used for gross profit reporting. * Profit = price - cost Google Merchant Center property cost_of_goods_sold.

Declaration
[JsonProperty("cost")]
public virtual float? Cost { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

CurrencyCode

The 3-letter currency code defined in ISO 4217. If this field is an unrecognizable currency code, an INVALID_ARGUMENT error is returned.

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

ETag

The ETag of the item.

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

OriginalPrice

Price of the product without any discount. If zero, by default set to be the price.

Declaration
[JsonProperty("originalPrice")]
public virtual float? OriginalPrice { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Price

Price of the product. Google Merchant Center property price. Schema.org property Offer.priceSpecification.

Declaration
[JsonProperty("price")]
public virtual float? Price { get; set; }
Property Value
Type Description
System.Nullable<System.Single>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top