UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

18 lines (17 loc) 571 B
import { Parameter } from "./../index"; export interface FileUpdateInterface { fileName?: string; parentDocumentId?: string; } export declare class FileUpdate implements FileUpdateInterface, Parameter { fileName?: string; parentDocumentId?: string; constructor(data: any); static getFileNameDefault(): string; static getFileNameDescription(): string; static getParentDocumentIdDefault(): string; static getParentDocumentIdDescription(): string; static fromJson(data: any): FileUpdate; toJson(): any; clone(): FileUpdate; }