Class: Stripe::DelegatedCheckout::RequestedSessionConfirmParams::PaymentMethodData::BillingDetails
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::DelegatedCheckout::RequestedSessionConfirmParams::PaymentMethodData::BillingDetails
- Defined in:
- lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#address ⇒ Object
The address for the billing details.
-
#email ⇒ Object
The email for the billing details.
-
#name ⇒ Object
The name for the billing details.
-
#phone ⇒ Object
The phone for the billing details.
Instance Method Summary collapse
-
#initialize(address: nil, email: nil, name: nil, phone: nil) ⇒ BillingDetails
constructor
A new instance of BillingDetails.
Methods inherited from RequestParams
Constructor Details
#initialize(address: nil, email: nil, name: nil, phone: nil) ⇒ BillingDetails
Returns a new instance of BillingDetails.
113 114 115 116 117 118 |
# File 'lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb', line 113 def initialize(address: nil, email: nil, name: nil, phone: nil) @address = address @email = email @name = name @phone = phone end |
Instance Attribute Details
#address ⇒ Object
The address for the billing details.
105 106 107 |
# File 'lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb', line 105 def address @address end |
#email ⇒ Object
The email for the billing details.
107 108 109 |
# File 'lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb', line 107 def email @email end |
#name ⇒ Object
The name for the billing details.
109 110 111 |
# File 'lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb', line 109 def name @name end |
#phone ⇒ Object
The phone for the billing details.
111 112 113 |
# File 'lib/stripe/params/delegated_checkout/requested_session_confirm_params.rb', line 111 def phone @phone end |