/** * User Service API * Solomon AI User Service API - Manages user profiles and authentication * * The version of the OpenAPI document: 1.0 * Contact: yoanyomba@solomon-ai.co * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AccountStatements } from './accountStatements'; import { BankAccountStatus } from './bankAccountStatus'; import { BankAccountType } from './bankAccountType'; export declare class StudentLoanAccount { 'id'?: string; 'plaidAccountId'?: string; 'disbursementDates'?: Array; 'expectedPayoffDate'?: string; 'guarantor'?: string; 'interestRatePercentage'?: number; 'isOverdue'?: boolean; 'lastPaymentAmount'?: number; 'lastPaymentDate'?: string; 'lastStatementIssueDate'?: string; 'loanName'?: string; 'loanEndDate'?: string; 'minimumPaymentAmount'?: number; 'nextPaymentDueDate'?: string; 'originationDate'?: string; 'originationPrincipalAmount'?: number; 'outstandingInterestAmount'?: number; 'paymentReferenceNumber'?: string; 'sequenceNumber'?: string; 'ytdInterestPaid'?: number; 'ytdPrincipalPaid'?: number; 'loanType'?: string; 'pslfStatusEstimatedEligibilityDate'?: string; 'pslfStatusPaymentsMade'?: number; 'pslfStatusPaymentsRemaining'?: number; 'repaymentPlanType'?: string; 'repaymentPlanDescription'?: string; 'servicerAddressCity'?: string; 'servicerAddressPostalCode'?: string; 'servicerAddressState'?: string; 'servicerAddressStreet'?: string; 'servicerAddressRegion'?: string; 'servicerAddressCountry'?: string; 'userId'?: string; 'name'?: string; 'status'?: BankAccountStatus; 'statements'?: Array; 'plaidAccountType'?: string; 'type'?: BankAccountType; 'createdAt'?: Date; 'deletedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace StudentLoanAccount { }