Class: Stripe::Issuing::CreditUnderwritingRecord::CorrectParams::Decision::ApplicationRejected

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) ⇒ ApplicationRejected

Returns a new instance of ApplicationRejected.



206
207
208
209
# File 'lib/stripe/resources/issuing/credit_underwriting_record.rb', line 206

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.



202
203
204
# File 'lib/stripe/resources/issuing/credit_underwriting_record.rb', line 202

def reason_other_explanation
  @reason_other_explanation
end

#reasonsObject

List of reasons why the application was rejected, up to 4 reasons, in order of importance.



204
205
206
# File 'lib/stripe/resources/issuing/credit_underwriting_record.rb', line 204

def reasons
  @reasons
end