Class: Stripe::PaymentIntentCreateParams::PaymentDetails::FleetDatum::Station

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/params/payment_intent_create_params.rb

Defined Under Namespace

Classes: ServiceLocation

Instance Attribute Summary collapse

Instance Method Summary collapse

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.



1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1133

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_infoObject

Additional contact information for the station.



1121
1122
1123
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1121

def additional_contact_info
  @additional_contact_info
end

#customer_service_phone_numberObject

The customer service phone number of the station.



1123
1124
1125
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1123

def customer_service_phone_number
  @customer_service_phone_number
end

#partner_id_codeObject

The partner ID code of the station.



1125
1126
1127
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1125

def partner_id_code
  @partner_id_code
end

#phone_numberObject

The phone number of the station.



1127
1128
1129
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1127

def phone_number
  @phone_number
end

#service_locationObject

The physical location of the station.



1129
1130
1131
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1129

def service_location
  @service_location
end

#urlObject

The URL of the station.



1131
1132
1133
# File 'lib/stripe/params/payment_intent_create_params.rb', line 1131

def url
  @url
end