import type { fields_models_LineItem } from './fields_models_LineItem'; export type billing_BillingFieldsModel = { absorbTransactionFees?: boolean; allowPaymentViaACH?: boolean; allowPaymentViaCC?: boolean; attachment?: string; attachmentIdentityId?: string; cancelledAt?: string; clientUserId?: string; collectionMethod?: string; companyId?: string; createDraft?: boolean; createdBy?: string; currency?: string; dateOfIssue?: string; daysUntilDue?: number; dueDate?: string; fileKey?: string; ignoreStripe?: boolean; interval?: string; /** * only for subscription invoices */ intervalCount?: number; lineItems?: Array; memo?: string; paidManually?: boolean; prorate?: boolean; quickbooksId?: string; /** * not set by the front-end */ reactivatedBy?: string; resetBillingCycle?: boolean; scheduleEndDate?: number; scheduleIterations?: number; scheduleStartDate?: number; taxPercentage?: number; };