Class: Google::Apis::ContentV2sandbox::TestOrderPaymentMethod

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2sandbox/classes.rb,
generated/google/apis/content_v2sandbox/representations.rb,
generated/google/apis/content_v2sandbox/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TestOrderPaymentMethod

Returns a new instance of TestOrderPaymentMethod



3252
3253
3254
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3252

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#expiration_monthFixnum

The card expiration month (January = 1, February = 2 etc.). Corresponds to the JSON property expirationMonth

Returns:

  • (Fixnum)


3229
3230
3231
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3229

def expiration_month
  @expiration_month
end

#expiration_yearFixnum

The card expiration year (4-digit, e.g. 2015). Corresponds to the JSON property expirationYear

Returns:

  • (Fixnum)


3234
3235
3236
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3234

def expiration_year
  @expiration_year
end

#last_four_digitsString

The last four digits of the card number. Corresponds to the JSON property lastFourDigits

Returns:

  • (String)


3239
3240
3241
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3239

def last_four_digits
  @last_four_digits
end

#predefined_billing_addressString

The billing address. Corresponds to the JSON property predefinedBillingAddress

Returns:

  • (String)


3244
3245
3246
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3244

def predefined_billing_address
  @predefined_billing_address
end

#typeString

The type of instrument. Note that real orders might have different values than the four values accepted by createTestOrder. Corresponds to the JSON property type

Returns:

  • (String)


3250
3251
3252
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3250

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3257
3258
3259
3260
3261
3262
3263
# File 'generated/google/apis/content_v2sandbox/classes.rb', line 3257

def update!(**args)
  @expiration_month = args[:expiration_month] if args.key?(:expiration_month)
  @expiration_year = args[:expiration_year] if args.key?(:expiration_year)
  @last_four_digits = args[:last_four_digits] if args.key?(:last_four_digits)
  @predefined_billing_address = args[:predefined_billing_address] if args.key?(:predefined_billing_address)
  @type = args[:type] if args.key?(:type)
end