cecon-interfaces
Version:
Interfaces de Projetos Cecon
15 lines (14 loc) • 457 B
TypeScript
export interface IQuery {
apikey?: string | undefined | null;
companyId?: string | undefined | null;
containerId?: string | undefined | null;
dateField?: string | null | undefined;
endDate?: string;
filterBy?: 'startDate' | 'endDate' | 'none';
lastDocId?: string | undefined | null;
limit: string;
query?: string;
sandbox?: 'true' | 'false' | 'undefined' | 'null' | '';
startDate?: string;
status?: string;
}