Show / Hide Table of Contents

Class TestOrderPaymentMethod

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

Properties

ETag

The ETag of the item.

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

ExpirationMonth

The card expiration month (January = 1, February = 2 etc.).

Declaration
[JsonProperty("expirationMonth")]
public virtual int? ExpirationMonth { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ExpirationYear

The card expiration year (4-digit, e.g. 2015).

Declaration
[JsonProperty("expirationYear")]
public virtual int? ExpirationYear { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

LastFourDigits

The last four digits of the card number.

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

PredefinedBillingAddress

The billing address. Acceptable values are: - "dwight" - "jim" - "pam"

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

Type

The type of instrument. Note that real orders might have different values than the four values accepted by createTestOrder. Acceptable values are: - "AMEX" - "DISCOVER" - "MASTERCARD" - "VISA"

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

Implements

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