in v2/otel/otel.go [67:73]
func (mw *receivedMessageWrapper) Get(key string) string {
if mw.message.ApplicationProperties == nil || mw.message.ApplicationProperties[key] == nil {
return ""
}
return mw.message.ApplicationProperties[key].(string)
}