/* tslint:disable */ /* eslint-disable */ /** * configuration/iddocumenttemplates.yaml * 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. */ /** * Represents a template for identification documents. */ export interface IdentificationDocumentTemplateConfiguration { /** * `TRUE` if a template allows files to be attached, `FALSE` otherwise. */ allowAttachments: boolean; /** * The ID template constraint to define the ID number length and format. Templates consist of the characters `#`, `@`, and `$`, where `#` specifies a number, `@` a letter, and `$` a number or a letter. */ documentIdTemplate: string; /** * The type of the document. For example, passport. */ documentType: string; /** * The unique identifier for the template. */ id: string; /** * The authority that issued the document. */ issuingAuthority: string; /** * `TRUE` if a template is mandatory for all the clients, `FALSE` otherwise. */ mandatoryForClients: boolean; }