Class: Stripe::PaymentRecordReportPaymentAttemptParams::Guaranteed::ProcessorDetails

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

Defined Under Namespace

Classes: Custom

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(custom: nil, type: nil) ⇒ ProcessorDetails

Returns a new instance of ProcessorDetails.



63
64
65
66
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 63

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.



59
60
61
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 59

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.



61
62
63
# File 'lib/stripe/params/payment_record_report_payment_attempt_params.rb', line 61

def type
  @type
end