(visitor CommandVisitor)
| 93 | var commandVisitorType reflect.Type = reflect.TypeOf(CommandVisitor{}) |
| 94 | |
| 95 | func (union Command) Visit(visitor CommandVisitor) error { |
| 96 | return visitUnion(union, visitor) |
| 97 | } |
| 98 | func (union *Command) discriminator() *string { |
| 99 | return (*string)(&union.CommandType) |
| 100 | } |
no test coverage detected