@cfdi/complementos
Version:
Libreria para generar complementos del cfdi V4.0
27 lines • 785 B
TypeScript
export interface XmlValesDeDespensa {
_attributes: XmlValesAttributes;
'valesdedespensa:Conceptos': XmlValesDeDespensaConceptos;
}
export interface XmlValesAttributes {
version: string;
tipoOperacion: string;
registroPatronal?: string;
numeroDeCuenta: string;
total: string;
}
export interface XmlValesDeDespensaConceptos {
'valesdedespensa:Concepto': XmlValesDeDespensaConcepto[];
}
export interface XmlValesDeDespensaConcepto {
_attributes: XmlValesConceptAttributes;
}
export interface XmlValesConceptAttributes {
identificador: string;
fecha: string;
rfc: string;
curp: string;
nombre: string;
numSeguridadSocial?: string;
importe: string;
}
//# sourceMappingURL=valesdedespensa.com.d.ts.map