/** * mFangDai * mFangDai web API. * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { LoanOfficerMemberType } from './loanOfficerMemberType'; import { LoanType } from './loanType'; import { Language } from './language'; export interface UpdateLoanOfficerData { id: string; firstName?: string; lastName?: string; email?: string; phone?: string; addressLine1?: string; addressLine2?: string; city?: string; state?: string; zipCode?: string; nmls?: string; companyGroup?: string; company?: string; companyAddressLine1?: string; companyAddressLine2?: string; companyCity?: string; companyState?: string; companyZipCode?: string; licensedStates?: Array; nonQMLicensedStates?: Array; languages?: Array; productsProvided?: Array; loanOfficerMemberType?: LoanOfficerMemberType; }