Class: Stripe::Radar::PaymentEvaluationCreateParams::PaymentDetails::PaymentMethodDetails::BillingDetails
- Inherits:
-
Stripe::RequestParams
- Object
- Stripe::RequestParams
- Stripe::Radar::PaymentEvaluationCreateParams::PaymentDetails::PaymentMethodDetails::BillingDetails
- Defined in:
- lib/stripe/params/radar/payment_evaluation_create_params.rb
Defined Under Namespace
Classes: Address
Instance Attribute Summary collapse
-
#address ⇒ Object
Billing address.
-
#email ⇒ Object
Email address.
-
#name ⇒ Object
Full name.
-
#phone ⇒ Object
Billing phone number (including extension).
Instance Method Summary collapse
-
#initialize(address: nil, email: nil, name: nil, phone: nil) ⇒ BillingDetails
constructor
A new instance of BillingDetails.
Methods inherited from Stripe::RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(address: nil, email: nil, name: nil, phone: nil) ⇒ BillingDetails
Returns a new instance of BillingDetails.
131 132 133 134 135 136 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 131 def initialize(address: nil, email: nil, name: nil, phone: nil) @address = address @email = email @name = name @phone = phone end |
Instance Attribute Details
#address ⇒ Object
Billing address.
123 124 125 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 123 def address @address end |
#email ⇒ Object
Email address.
125 126 127 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 125 def email @email end |
#name ⇒ Object
Full name.
127 128 129 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 127 def name @name end |
#phone ⇒ Object
Billing phone number (including extension).
129 130 131 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 129 def phone @phone end |