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