Class ProductsCustomBatchRequestEntry
A batch entry encoding a single non-batch products request.
Inheritance
System.Object
ProductsCustomBatchRequestEntry
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 ProductsCustomBatchRequestEntry : 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
The method of the batch entry. Acceptable values are: - "delete
" - "get
" - "insert
"
Declaration
[JsonProperty("method")]
public virtual string Method { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Product
The product to insert. Only required if the method is insert
.
Declaration
[JsonProperty("product")]
public virtual Product Product { get; set; }
Property Value
Type | Description |
---|---|
Product |
ProductId
The ID of the product to get or delete. Only defined if the method is get
or delete
.
Declaration
[JsonProperty("productId")]
public virtual string ProductId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Implements
Google.Apis.Requests.IDirectResponseSchema