func()

in VSNotification.go [46:53]


func (doc *VSNotificationDocument) GetType(defaultValue string) string {
	entry, didFind := doc.FindKey("type")
	if didFind {
		return strings.ToLower(entry.Value)
	} else {
		return defaultValue
	}
}