Class: Stripe::PaymentIntentConfirmParams::PaymentDetails::FleetDatum::Station
- Inherits:
-
RequestParams
- Object
- RequestParams
- Stripe::PaymentIntentConfirmParams::PaymentDetails::FleetDatum::Station
- Defined in:
- lib/stripe/params/payment_intent_confirm_params.rb
Defined Under Namespace
Classes: ServiceLocation
Instance Attribute Summary collapse
-
#additional_contact_info ⇒ Object
Additional contact information for the station.
-
#customer_service_phone_number ⇒ Object
The customer service phone number of the station.
-
#partner_id_code ⇒ Object
The partner ID code of the station.
-
#phone_number ⇒ Object
The phone number of the station.
-
#service_location ⇒ Object
The physical location of the station.
-
#url ⇒ Object
The URL of the station.
Instance Method Summary collapse
-
#initialize(additional_contact_info: nil, customer_service_phone_number: nil, partner_id_code: nil, phone_number: nil, service_location: nil, url: nil) ⇒ Station
constructor
A new instance of Station.
Methods inherited from RequestParams
attr_accessor, coerce_params, coerce_value, field_encodings, new, #to_h
Constructor Details
#initialize(additional_contact_info: nil, customer_service_phone_number: nil, partner_id_code: nil, phone_number: nil, service_location: nil, url: nil) ⇒ Station
Returns a new instance of Station.
1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1119 def initialize( additional_contact_info: nil, customer_service_phone_number: nil, partner_id_code: nil, phone_number: nil, service_location: nil, url: nil ) @additional_contact_info = additional_contact_info @customer_service_phone_number = customer_service_phone_number @partner_id_code = partner_id_code @phone_number = phone_number @service_location = service_location @url = url end |
Instance Attribute Details
#additional_contact_info ⇒ Object
Additional contact information for the station.
1107 1108 1109 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1107 def additional_contact_info @additional_contact_info end |
#customer_service_phone_number ⇒ Object
The customer service phone number of the station.
1109 1110 1111 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1109 def customer_service_phone_number @customer_service_phone_number end |
#partner_id_code ⇒ Object
The partner ID code of the station.
1111 1112 1113 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1111 def partner_id_code @partner_id_code end |
#phone_number ⇒ Object
The phone number of the station.
1113 1114 1115 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1113 def phone_number @phone_number end |
#service_location ⇒ Object
The physical location of the station.
1115 1116 1117 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1115 def service_location @service_location end |
#url ⇒ Object
The URL of the station.
1117 1118 1119 |
# File 'lib/stripe/params/payment_intent_confirm_params.rb', line 1117 def url @url end |