@montarist/nilvera-api
Version:
An unofficial SDK for integrating with Nilvera e-Invoice, e-Archive services
15 lines (14 loc) • 382 B
TypeScript
import { InvoiceProfile, InvoiceType, SortType } from '../common';
export interface OldInvoiceRequest {
Page?: number;
PageSize?: number;
Search?: string;
StartDate?: string;
EndDate?: string;
SortColumn?: string;
SortType?: SortType;
InvoiceProfile?: InvoiceProfile[];
InvoiceType?: InvoiceType[];
IsPrint?: boolean;
IsSale?: boolean;
}