Show / Hide Table of Contents

Class ReturnaddressCustomBatchRequestEntry

Inheritance
System.Object
ReturnaddressCustomBatchRequestEntry
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 ReturnaddressCustomBatchRequestEntry : 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 Merchant Center account ID.

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: - "delete" - "get" - "insert"

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

ReturnAddress

The return address to submit. This should be set only if the method is insert.

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

ReturnAddressId

The return address ID. This should be set only if the method is delete or get.

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

Implements

IDirectResponseSchema
In This Article
Back to top