UNPKG

@softvision/webpdf-wsclient-typescript

Version:

A simplified and optimized API client library for the webPDF server

22 lines (21 loc) 700 B
import { Parameter } from "./../index"; export interface BillingInterface { applicationName?: string; customerCode?: string; userName?: string; } export declare class Billing implements BillingInterface, Parameter { applicationName?: string; customerCode?: string; userName?: string; constructor(data: any); static getApplicationNameDefault(): string; static getApplicationNameDescription(): string; static getCustomerCodeDefault(): string; static getCustomerCodeDescription(): string; static getUserNameDefault(): string; static getUserNameDescription(): string; static fromJson(data: any): Billing; toJson(): any; clone(): Billing; }