/* tslint:disable */ /* eslint-disable */ /** * organization/identificationDocumentTemplates * 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 IdentificationDocumentTemplate { /** * `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 encoded key of the ID template. It is auto generated and unique. */ encodedKey?: 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 individual clients, `FALSE` otherwise. */ mandatory?: boolean; }