jspurefix
Version:
pure node js fix engine
14 lines (12 loc) • 475 B
text/typescript
import { IAttachmentKeywordGrp } from './attachment_keyword_grp'
export interface IAttachmentGrp {
AttachmentName?: string// 2105
AttachmentMediaType?: string// 2106
AttachmentClassification?: string// 2107
AttachmentExternalURL?: string// 2108
AttachmentEncodingType?: number// 2109
UnencodedAttachmentLen?: number// 2110
EncodedAttachmentLen?: number// 2111
EncodedAttachment?: Buffer// 2112
AttachmentKeywordGrp?: IAttachmentKeywordGrp[]
}