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. It is returned as a string.
additionalInformation: String   # The amount the lender will lend.
amount: Int   # The potential amount the lender will lend (max based on product choice or total income).
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 best available initial rate from the lender's products.
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! }