Class: Stripe::Issuing::CreditUnderwritingRecordCreateFromProactiveReviewParams::Decision::CreditLineClosed

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

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(reason_other_explanation: nil, reasons: nil) ⇒ CreditLineClosed

Returns a new instance of CreditLineClosed.



56
57
58
59
# File 'lib/stripe/params/issuing/credit_underwriting_record_create_from_proactive_review_params.rb', line 56

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.



52
53
54
# File 'lib/stripe/params/issuing/credit_underwriting_record_create_from_proactive_review_params.rb', line 52

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.



54
55
56
# File 'lib/stripe/params/issuing/credit_underwriting_record_create_from_proactive_review_params.rb', line 54

def reasons
  @reasons
end