Show / Hide Table of Contents

Class RegionalinventoryCustomBatchRequestEntry

A batch entry encoding a single non-batch regional inventory request.

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

Properties

BatchId

An entry ID, unique within the batch request.

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

ETag

The ETag of the item.

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

MerchantId

The ID of the managing account.

Declaration
[JsonProperty("merchantId")]
public virtual ulong? MerchantId { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Method

Method of the batch request entry. Acceptable values are: - "insert"

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

ProductId

The ID of the product for which to update price and availability.

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

RegionalInventory

Price and availability of the product.

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

Implements

IDirectResponseSchema
In This Article
Back to top