Type Alias CreateInvoiceTemplateDto

CreateInvoiceTemplateDto: {
    altId: string;
    altType: "location";
    name: string;
    businessDetails: InvoiceBusinessDetails;
    currency: string;
    items: InvoiceItemDto[];
    internal?: boolean;
    discount?: InvoiceDiscount;
    termsNotes?: string;
    title?: string;
}

Type declaration