@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
34 lines (33 loc) • 1.15 kB
TypeScript
import { ObjectKeyReplyToAnnotationEdit, Parameter } from "./../index";
export interface ReplyToAnnotationEditInterface {
comment?: string;
creator?: string;
name?: string;
objectKey: ObjectKeyReplyToAnnotationEdit;
page?: number;
subject?: string;
}
export declare class ReplyToAnnotationEdit implements ReplyToAnnotationEditInterface, Parameter {
comment?: string;
creator?: string;
name?: string;
objectKey: ObjectKeyReplyToAnnotationEdit;
page?: number;
subject?: string;
constructor(data: any);
static getCommentDefault(): string;
static getCommentDescription(): string;
static getCreatorDefault(): string;
static getCreatorDescription(): string;
static getNameDefault(): string;
static getNameDescription(): string;
static getObjectKeyDescription(): string;
static getPageDefault(): number;
static getPageDescription(): string;
static getPageMin(): number;
static getSubjectDefault(): string;
static getSubjectDescription(): string;
static fromJson(data: any): ReplyToAnnotationEdit;
toJson(): any;
clone(): ReplyToAnnotationEdit;
}