UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 687 B
import { Billing, Parameter, Pdfa, PdfPassword, Settings } from "./../index"; export interface PdfaOperationInterface { billing?: Billing; password?: PdfPassword; pdfa: Pdfa; settings?: Settings; } export declare class PdfaOperation implements PdfaOperationInterface, Parameter { billing?: Billing; password?: PdfPassword; pdfa: Pdfa; settings?: Settings; constructor(data: any); static getBillingDescription(): string; static getPasswordDescription(): string; static getPdfaDescription(): string; static getSettingsDescription(): string; static fromJson(data: any): PdfaOperation; toJson(): any; clone(): PdfaOperation; }