Schema

Scalars

Enums

Objects

Input Objects

CaseResult (OBJECT)

A Case Result

Schema Definition

type CaseResult {   # Information from the lender about this result, it may include details about the result or details of any reasons why they will not loan.
additionalInformation: String   # The amount the lender will lend
amount: Int   # The amount the lender will lend
amountMax: Int   # The case this result belongs to
case: Case!   # A list of reasons this result may have been excluded for
exclusionReasons: [String!]!   # The index data for this case
index: CaseResultIndex!   # The lender this case result is from
lender: Lender!   # The rate of the product.
rate: Float   # A url to retrieve the screenshot pdf, this link is a signed url and will expire.
screenshotPdfUrl: String   # The status of this case result
status: CaseResultStatus! }