import { Amount } from "./amount"; import { GrantOfferFee } from "./grantOfferFee"; import { Repayment } from "./repayment"; export declare class GrantOffer { /** * The unique identifier of the account holder to which the grant is offered. */ "accountHolderId": string; "amount"?: Amount | null; /** * The contract type of the grant offer. Possible values: **cashAdvance**, **loan**. */ "contractType"?: GrantOffer.ContractTypeEnum; /** * The date when the grant offer expires. */ "expiresAt"?: Date; "fee"?: GrantOfferFee | null; /** * The unique identifier of the grant offer. */ "id"?: string; "repayment"?: Repayment | null; /** * The date when the grant offer becomes available. */ "startsAt"?: Date; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); } export declare namespace GrantOffer { enum ContractTypeEnum { CashAdvance = "cashAdvance", Loan = "loan" } }