skola24-node
Version:
Library that provides convenient access to the Skola24 API.
24 lines • 503 B
TypeScript
export type Validation = {
code: number;
label: any;
message: string;
}[];
export type Exception = {
code: number;
context: string;
errorId: number;
errorTime: string;
message: any;
source: any;
targetSite: any;
innerExceptions: any[];
};
export type BaseResponse<T> = {
error: any;
data: T;
exception?: Exception;
validation: Validation;
sessionExpires: Date;
needSessionRefresh: boolean;
};
//# sourceMappingURL=baseResponse.d.ts.map