Show / Hide Table of Contents

Class LoyaltyPoints

Inheritance
System.Object
LoyaltyPoints
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.ShoppingContent.v2.Data
Assembly: Google.Apis.ShoppingContent.v2.dll
Syntax
public class LoyaltyPoints : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Name

Name of loyalty points program. It is recommended to limit the name to 12 full-width characters or 24 Roman characters.

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

PointsValue

The retailer's loyalty points in absolute value.

Declaration
[JsonProperty("pointsValue")]
public virtual long? PointsValue { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

Ratio

The ratio of a point when converted to currency. Google assumes currency based on Merchant Center settings. If ratio is left out, it defaults to 1.0.

Declaration
[JsonProperty("ratio")]
public virtual double? Ratio { get; set; }
Property Value
Type Description
System.Nullable<System.Double>

Implements

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