UNPKG

jspurefix

Version:
14 lines (13 loc) 477 B
/// <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[]; }