@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 710 B
TypeScript
import { Parameter } from "./../index";
export interface ErrorCountServerStateInterface {
code?: number;
count?: number;
description?: string;
}
export declare class ErrorCountServerState implements ErrorCountServerStateInterface, Parameter {
code?: number;
count?: number;
description?: string;
constructor(data: any);
static getCodeDefault(): number;
static getCodeDescription(): string;
static getCountDefault(): number;
static getCountDescription(): string;
static getDescriptionDefault(): string;
static getDescriptionDescription(): string;
static fromJson(data: any): ErrorCountServerState;
toJson(): any;
clone(): ErrorCountServerState;
}