@montarist/nilvera-api
Version:
An unofficial SDK for integrating with Nilvera e-Invoice, e-Archive services
34 lines (33 loc) • 738 B
TypeScript
export interface DraftResponse {
Page: number;
PageSize: number;
TotalCount: number;
TotalPages: number;
Content: DraftContent[];
}
export interface DraftContent {
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;
ReceiverAlias: string;
IsPrint: boolean;
Tags: Tag[];
SpecialCode: string;
}
export interface Tag {
UUID: string;
Description: string;
Name: string;
Color: string;
}