Class: Stripe::PaymentMethodCreateParams::BillingDetails

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

Defined Under Namespace

Classes: Address

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(address: nil, email: nil, name: nil, phone: nil, tax_id: nil) ⇒ BillingDetails

Returns a new instance of BillingDetails.



96
97
98
99
100
101
102
# File 'lib/stripe/params/payment_method_create_params.rb', line 96

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

Instance Attribute Details

#addressObject

Billing address.



86
87
88
# File 'lib/stripe/params/payment_method_create_params.rb', line 86

def address
  @address
end

#emailObject

Email address.



88
89
90
# File 'lib/stripe/params/payment_method_create_params.rb', line 88

def email
  @email
end

#nameObject

Full name.



90
91
92
# File 'lib/stripe/params/payment_method_create_params.rb', line 90

def name
  @name
end

#phoneObject

Billing phone number (including extension).



92
93
94
# File 'lib/stripe/params/payment_method_create_params.rb', line 92

def phone
  @phone
end

#tax_idObject

Taxpayer identification number. Used only for transactions between LATAM buyers and non-LATAM sellers.



94
95
96
# File 'lib/stripe/params/payment_method_create_params.rb', line 94

def tax_id
  @tax_id
end