getRelationType returns a human-readable relation type.
(relationType string)
| 218 | |
| 219 | // getRelationType returns a human-readable relation type. |
| 220 | func getRelationType(relationType string) string { |
| 221 | switch relationType { |
| 222 | case "DIRECT": |
| 223 | return "direct" |
| 224 | case "INDIRECT": |
| 225 | return "indirect" |
| 226 | default: |
| 227 | return relationType |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | type GroupsMembersCmd struct { |
| 232 | GroupEmail string `arg:"" name:"groupEmail" help:"Group email (e.g., engineering@company.com)"` |
no outgoing calls