jspurefix
Version:
pure node js fix engine
14 lines (13 loc) • 477 B
TypeScript
/// <reference types="node" />
import { IAttachmentKeywordGrp } from './attachment_keyword_grp';
export interface IAttachmentGrp {
AttachmentName?: string;
AttachmentMediaType?: string;
AttachmentClassification?: string;
AttachmentExternalURL?: string;
AttachmentEncodingType?: number;
UnencodedAttachmentLen?: number;
EncodedAttachmentLen?: number;
EncodedAttachment?: Buffer;
AttachmentKeywordGrp?: IAttachmentKeywordGrp[];
}