import { TagInfo } from '../common';
export interface DraftEArchiveInvoiceResponse {
    Page: number;
    PageSize: number;
    TotalCount?: number;
    TotalPages?: number;
    Content?: DraftEArchiveInvoice[];
}
export interface DraftEArchiveInvoice {
    UUID: string;
    TaxNumber: string;
    InvoiceNumber: string;
    InvoiceProfile: string;
    InvoiceStatusDescription: string;
    InvoiceType: string;
    IssueDate: string;
    CreatedDate: string;
    Status: number;
    CurrencyCode: string;
    PayableAmount: number;
    Alias: string;
    ReceiverName: string;
    ReceiverTaxNumber: string;
    IsPrint: boolean;
    Tags?: TagInfo[];
    SpecialCode?: string;
}
