@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
35 lines (34 loc) • 1.14 kB
TypeScript
import { Parameter, ReplyState } from "./../index";
export interface ReplyStateAnnotationInterface {
creator?: string;
name?: string;
page?: number;
replyState?: ReplyState;
replyTo?: string;
subject?: string;
}
export declare class ReplyStateAnnotation implements ReplyStateAnnotationInterface, Parameter {
creator?: string;
name?: string;
page?: number;
replyState?: ReplyState;
replyTo?: string;
subject?: string;
constructor(data: any);
static getCreatorDefault(): string;
static getCreatorDescription(): string;
static getNameDefault(): string;
static getNameDescription(): string;
static getPageDefault(): number;
static getPageDescription(): string;
static getPageMin(): number;
static getReplyStateDefault(): ReplyState;
static getReplyStateDescription(): string;
static getReplyToDefault(): string;
static getReplyToDescription(): string;
static getSubjectDefault(): string;
static getSubjectDescription(): string;
static fromJson(data: any): ReplyStateAnnotation;
toJson(): any;
clone(): ReplyStateAnnotation;
}