@softvision/webpdf-wsclient-typescript
Version:
A simplified and optimized API client library for the webPDF server
56 lines (55 loc) • 1.82 kB
TypeScript
import { Parameter, Document, SortAttachment } from "./../index";
export interface AttachmentInterface {
compressedSize?: number;
description?: string;
documentType?: Document;
folderId?: number;
mimeType?: string;
name?: string;
number?: number;
objectKey?: string;
page?: number;
size?: number;
sort?: SortAttachment;
}
export declare class Attachment implements AttachmentInterface, Parameter {
compressedSize?: number;
description?: string;
documentType?: Document;
folderId?: number;
mimeType?: string;
name?: string;
number?: number;
objectKey?: string;
page?: number;
size?: number;
sort?: SortAttachment;
constructor(data: any);
static getCompressedSizeDefault(): number;
static getCompressedSizeDescription(): string;
static getCompressedSizeMin(): number;
static getDescriptionDefault(): string;
static getDescriptionDescription(): string;
static getDocumentTypeDescription(): string;
static getFolderIdDefault(): number;
static getFolderIdDescription(): string;
static getMimeTypeDefault(): string;
static getMimeTypeDescription(): string;
static getNameDefault(): string;
static getNameDescription(): string;
static getNumberDefault(): number;
static getNumberDescription(): string;
static getNumberMin(): number;
static getObjectKeyDefault(): string;
static getObjectKeyDescription(): string;
static getPageDefault(): number;
static getPageDescription(): string;
static getPageMin(): number;
static getSizeDefault(): number;
static getSizeDescription(): string;
static getSizeMin(): number;
static getSortDescription(): string;
static fromJson(data: any): Attachment;
toJson(): any;
clone(): Attachment;
}