@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
18 lines (17 loc) • 560 B
TypeScript
import { Parameter } from "./../index";
export interface CommentRelationInterface {
comment?: string;
objectID?: string;
}
export declare class CommentRelation implements CommentRelationInterface, Parameter {
comment?: string;
objectID?: string;
constructor(data: any);
static getCommentDefault(): string;
static getCommentDescription(): string;
static getObjectIDDefault(): string;
static getObjectIDDescription(): string;
static fromJson(data: any): CommentRelation;
toJson(): any;
clone(): CommentRelation;
}