/* tslint:disable */ /* eslint-disable */ /** * loanproducts * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Template documents of the product. */ export interface DocumentTemplate { /** * The creation date of the document */ creationDate?: string; /** * The document encodedKey */ encodedKey?: string; /** * The last modified date of the document */ lastModifiedDate?: string; /** * The name the document */ name?: string; /** * The type of the template */ type?: DocumentTemplateTypeEnum; } export const DocumentTemplateTypeEnum = { Account: 'ACCOUNT', Transaction: 'TRANSACTION', AccountWithTransactions: 'ACCOUNT_WITH_TRANSACTIONS', } as const; export type DocumentTemplateTypeEnum = (typeof DocumentTemplateTypeEnum)[keyof typeof DocumentTemplateTypeEnum];