Schema

Scalars

Enums

Objects

Input Objects

LenderProduct (OBJECT)

A lender product sourced for a case result.

Schema Definition

type LenderProduct {   # Whether this product is the best buy for the lender.
bestBuy: Boolean!   # The product code.
code: String   # The unique identifier of the lender product.
id: String!   # The initial interest rate of the product.
initialRate: PositiveFloat!   # The initial rate period in years. Zero indicates a lifetime product.
initialRateYear: PositiveInteger!   # The class of the mortgage product (e.g. Fixed, Variable, Tracker, Discount).
mortgageClass: MortgageClass! }