RmqRecordOptions


interface RmqRecordOptions {
  expiration?: string | number
  userId?: string
  CC?: string | string[]
  mandatory?: boolean
  persistent?: boolean
  deliveryMode?: boolean | number
  BCC?: string | string[]
  contentType?: string
  contentEncoding?: string
  headers?: Record<string, string>
  priority?: number
  messageId?: string
  timestamp?: number
  type?: string
  appId?: string
}

Properties

Property Description
expiration?: string | number
userId?: string
CC?: string | string[]
mandatory?: boolean
persistent?: boolean
deliveryMode?: boolean | number
BCC?: string | string[]
contentType?: string
contentEncoding?: string
headers?: Record<string, string>
priority?: number
messageId?: string
timestamp?: number
type?: string
appId?: string