Class: Stripe::PaymentIntentCreateParams::PaymentMethodOptions::Card::StatementDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_params.rb

Defined Under Namespace

Classes: Address

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h

Constructor Details

#initialize(address: nil, phone: nil) ⇒ StatementDetails

Returns a new instance of StatementDetails.



3001
3002
3003
3004
# File 'lib/stripe/params/payment_intent_create_params.rb', line 3001

def initialize(address: nil, phone: nil)
  @address = address
  @phone = phone
end

Instance Attribute Details

#addressObject

Please pass in an address that is within your Stripe user account country



2997
2998
2999
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2997

def address
  @address
end

#phoneObject

Phone number (e.g., a toll-free number that customers can call)



2999
3000
3001
# File 'lib/stripe/params/payment_intent_create_params.rb', line 2999

def phone
  @phone
end