Class: Stripe::Issuing::CreditUnderwritingRecord::CorrectParams::Decision::CreditLineClosed

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from RequestParams

#to_h

Constructor Details

#initialize(reason_other_explanation: nil, reasons: nil) ⇒ CreditLineClosed

Returns a new instance of CreditLineClosed.



214
215
216
217
# File 'lib/stripe/resources/issuing/credit_underwriting_record.rb', line 214

def initialize(reason_other_explanation: nil, reasons: nil)
  @reason_other_explanation = reason_other_explanation
  @reasons = reasons
end

Instance Attribute Details

#reason_other_explanationObject

Details about the ‘reasons.other` when present.



209
210
211
# File 'lib/stripe/resources/issuing/credit_underwriting_record.rb', line 209

def reason_other_explanation
  @reason_other_explanation
end

#reasonsObject

List of reasons why the credit line was closed, up to 4 reasons, in order of importance.



212
213
214
# File 'lib/stripe/resources/issuing/credit_underwriting_record.rb', line 212

def reasons
  @reasons
end