(visitor ProjectSourceVisitor)
| 180 | var projectSourceVisitorType reflect.Type = reflect.TypeOf(ProjectSourceVisitor{}) |
| 181 | |
| 182 | func (union ProjectSource) Visit(visitor ProjectSourceVisitor) error { |
| 183 | return visitUnion(union, visitor) |
| 184 | } |
| 185 | func (union *ProjectSource) discriminator() *string { |
| 186 | return (*string)(&union.SourceType) |
| 187 | } |
nothing calls this directly
no test coverage detected