UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 623 B
import { Parameter, MetadataReplyState } from "./../index"; export interface ReplyStateRelationInterface { objectID?: string; state?: MetadataReplyState; } export declare class ReplyStateRelation implements ReplyStateRelationInterface, Parameter { objectID?: string; state?: MetadataReplyState; constructor(data: any); static getObjectIDDefault(): string; static getObjectIDDescription(): string; static getStateDefault(): MetadataReplyState; static getStateDescription(): string; static fromJson(data: any): ReplyStateRelation; toJson(): any; clone(): ReplyStateRelation; }