Class: Stripe::PaymentRecord::ReportPaymentParams::ProcessorDetails

Inherits:
RequestParams
  • Object
show all
Defined in:
lib/stripe/resources/payment_record.rb

Defined Under Namespace

Classes: Custom

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(custom: nil, type: nil) ⇒ ProcessorDetails

Returns a new instance of ProcessorDetails.



2334
2335
2336
2337
# File 'lib/stripe/resources/payment_record.rb', line 2334

def initialize(custom: nil, type: nil)
  @custom = custom
  @type = type
end

Instance Attribute Details

#customObject

Information about the custom processor used to make this payment.



2330
2331
2332
# File 'lib/stripe/resources/payment_record.rb', line 2330

def custom
  @custom
end

#typeObject

The type of the processor details. An additional hash is included on processor_details with a name matching this value. It contains additional information specific to the processor.



2332
2333
2334
# File 'lib/stripe/resources/payment_record.rb', line 2332

def type
  @type
end