@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
22 lines (21 loc) • 742 B
TypeScript
import { Billing, Parameter, Converter, PdfPassword, Settings } from "./../index";
export interface ConverterOperationInterface {
billing?: Billing;
converter: Converter;
password?: PdfPassword;
settings?: Settings;
}
export declare class ConverterOperation implements ConverterOperationInterface, Parameter {
billing?: Billing;
converter: Converter;
password?: PdfPassword;
settings?: Settings;
constructor(data: any);
static getBillingDescription(): string;
static getConverterDescription(): string;
static getPasswordDescription(): string;
static getSettingsDescription(): string;
static fromJson(data: any): ConverterOperation;
toJson(): any;
clone(): ConverterOperation;
}