Show / Hide Table of Contents

Class RateGroup

Inheritance
System.Object
RateGroup
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 RateGroup : IDirectResponseSchema

Properties

ApplicableShippingLabels

A list of shipping labels defining the products to which this rate group applies to. This is a disjunction: only one of the labels has to match for the rate group to apply. May only be empty for the last rate group of a service. Required.

Declaration
[JsonProperty("applicableShippingLabels")]
public virtual IList<string> ApplicableShippingLabels { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

CarrierRates

A list of carrier rates that can be referred to by mainTable or singleValue.

Declaration
[JsonProperty("carrierRates")]
public virtual IList<CarrierRate> CarrierRates { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<CarrierRate>

ETag

The ETag of the item.

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

MainTable

A table defining the rate group, when singleValue is not expressive enough. Can only be set if singleValue is not set.

Declaration
[JsonProperty("mainTable")]
public virtual Table MainTable { get; set; }
Property Value
Type Description
Table

Name

Name of the rate group. Optional. If set has to be unique within shipping service.

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

SingleValue

The value of the rate group (e.g. flat rate $10). Can only be set if mainTable and subtables are not set.

Declaration
[JsonProperty("singleValue")]
public virtual Value SingleValue { get; set; }
Property Value
Type Description
Value

Subtables

A list of subtables referred to by mainTable. Can only be set if mainTable is set.

Declaration
[JsonProperty("subtables")]
public virtual IList<Table> Subtables { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Table>

Implements

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