import { AutoEncoder } from '@simonbackx/simple-encoding'; import { Image } from './files/Image.js'; export declare class OrganizationInvoiceSettings extends AutoEncoder { /** * Whether we reset the invoice numbers yearly on the start of this month. * Disabled by default. * * 1 = january */ resetMonth: number | null; padZeroLength: number; /** * If this is set to true, resetMonth is expected to be 1 (january) */ prefixYear: boolean; /** * To differentiate multiple invoice numbering systems used across multiple online systems * E.g. 'STA-', 'KEEO- */ fixedPrefix: string; background: Image | null; /** * Use a different background for the 2nd and later backgrounds */ secondBackground: Image | null; } //# sourceMappingURL=OrganizationInvoiceSettings.d.ts.map