(values map[string]interface{})
| 1487 | } |
| 1488 | |
| 1489 | func sortedChildKeys(values map[string]interface{}) []string { |
| 1490 | keys := make([]string, 0, len(values)) |
| 1491 | for key := range values { |
| 1492 | keys = append(keys, key) |
| 1493 | } |
| 1494 | sort.Strings(keys) |
| 1495 | return keys |
| 1496 | } |
| 1497 | |
| 1498 | func extractDisplayName(values map[string]interface{}, fallback string, accountID string) string { |
| 1499 | name := extractStringValue(values["name"]) |
no outgoing calls
no test coverage detected