Class: Stripe::CustomerPaymentSourceUpdateParams::Owner
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::CustomerPaymentSourceUpdateParams::Owner
- Defined in:
- lib/stripe/params/customer_payment_source_update_params.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#address ⇒ Object
Owner’s address.
-
#email ⇒ Object
Owner’s email address.
-
#name ⇒ Object
Owner’s full name.
-
#phone ⇒ Object
Owner’s phone number.
Instance Method Summary collapse
-
#initialize(address: nil, email: nil, name: nil, phone: nil) ⇒ Owner
constructor
A new instance of Owner.
Methods inherited from RequestParams
Constructor Details
#initialize(address: nil, email: nil, name: nil, phone: nil) ⇒ Owner
46 47 48 49 50 51 |
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 46 def initialize(address: nil, email: nil, name: nil, phone: nil) @address = address @email = email @name = name @phone = phone end |
Instance Attribute Details
#address ⇒ Object
Owner’s address.
38 39 40 |
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 38 def address @address end |
#email ⇒ Object
Owner’s email address.
40 41 42 |
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 40 def email @email end |
#name ⇒ Object
Owner’s full name.
42 43 44 |
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 42 def name @name end |
#phone ⇒ Object
Owner’s phone number.
44 45 46 |
# File 'lib/stripe/params/customer_payment_source_update_params.rb', line 44 def phone @phone end |