UNPKG

conekta

Version:
59 lines (51 loc) 2.82 kB
/* tslint:disable */ /* eslint-disable */ /** * Conekta API * Conekta sdk * * The version of the OpenAPI document: 2.2.0 * Contact: engineering@conekta.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Response body after uploading a company document. * @export * @interface CompanyDocumentResponse */ export interface CompanyDocumentResponse { /** * Classification of the document. | Tipo de archivo | Descripción | | :--------------------------- | :-------------------------------------------------------- | | `id_legal_representative` | identificación oficial frente | | `id_legal_representative_back` | identificación oficial atrás | | `cfdi` | Prueba de situación fiscal | | `constitutive_act_basic` | Acta constitutiva | | `proof_of_address` | Comprobante de domicilio del negocio | | `power_of_attonery` | Poderes de representación | | `deposit_account_cover` | Carátula de la cuenta de depósito | | `permit_casino` | Permiso ante SEGOB | | `license_sanitation` | Licencia sanitaria de COFEPRIS | | `registration_tourism` | Inscripción ante el Registro Nacional de Turismo (SECTUR) | * @type {string} * @memberof CompanyDocumentResponse */ 'file_classification': CompanyDocumentResponseFileClassificationEnum; /** * Name of the file as stored or processed. * @type {string} * @memberof CompanyDocumentResponse */ 'file_name': string; /** * Current status of the document. * @type {string} * @memberof CompanyDocumentResponse */ 'status': string; } export const CompanyDocumentResponseFileClassificationEnum = { idLegalRepresentative: 'id_legal_representative', idLegalRepresentativeBack: 'id_legal_representative_back', cfdi: 'cfdi', constitutiveActBasic: 'constitutive_act_basic', proofOfAddress: 'proof_of_address', powerOfAttonery: 'power_of_attonery', depositAccountCover: 'deposit_account_cover', permitCasino: 'permit_casino', licenseSanitation: 'license_sanitation', registrationTourism: 'registration_tourism' } as const; export type CompanyDocumentResponseFileClassificationEnum = typeof CompanyDocumentResponseFileClassificationEnum[keyof typeof CompanyDocumentResponseFileClassificationEnum];