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.
102 103 104 105 106 107 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 102 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.
94 95 96 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 94 def address @address end |
#email ⇒ Object
Email address.
96 97 98 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 96 def email @email end |
#name ⇒ Object
Full name.
98 99 100 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 98 def name @name end |
#phone ⇒ Object
Billing phone number (including extension).
100 101 102 |
# File 'lib/stripe/params/radar/payment_evaluation_create_params.rb', line 100 def phone @phone end |