func()

in v2/otel/otel.go [105:111]


func (mw *messageWrapper) Get(key string) string {
	if mw.message.ApplicationProperties == nil || mw.message.ApplicationProperties[key] == nil {
		return ""
	}

	return mw.message.ApplicationProperties[key].(string)
}