- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
29 lines
674 B
TypeScript
29 lines
674 B
TypeScript
export declare enum TaxConfigStatus {
|
|
PENDING = "pending",
|
|
ACTIVE = "active",
|
|
SUSPENDED = "suspended"
|
|
}
|
|
export declare class TaxConfig {
|
|
id: string;
|
|
tenantId: string;
|
|
rfc: string;
|
|
razonSocial: string;
|
|
regimenFiscal: string;
|
|
codigoPostal: string;
|
|
csdCertificate: string;
|
|
csdPrivateKeyEncrypted: string;
|
|
csdPasswordEncrypted: string;
|
|
csdValidFrom: Date;
|
|
csdValidTo: Date;
|
|
pacProvider: string;
|
|
pacApiKeyEncrypted: string;
|
|
pacSandbox: boolean;
|
|
serie: string;
|
|
folioActual: number;
|
|
autoSendEmail: boolean;
|
|
logoUrl: string;
|
|
status: TaxConfigStatus;
|
|
createdAt: Date;
|
|
updatedAt: Date;
|
|
}
|