Show / Hide Table of Contents

Class OrderPaymentMethod

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

Properties

BillingAddress

The billing address.

Declaration
[JsonProperty("billingAddress")]
public virtual OrderAddress BillingAddress { get; set; }
Property Value
Type Description
OrderAddress

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

PhoneNumber

The billing phone number.

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

Type

The type of instrument. Acceptable values are: - "AMEX" - "DISCOVER" - "JCB" - "MASTERCARD" - "UNIONPAY" - "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