| 41 | } |
| 42 | |
| 43 | type Response struct { |
| 44 | // We need at least one tagged field to indicate that v5+ uses "flexible" |
| 45 | // messages. |
| 46 | _ struct{} `kafka:"min=v5,max=v5,tag"` |
| 47 | |
| 48 | ThrottleTimeMs int32 `kafka:"min=v2,max=v5"` |
| 49 | Topics []ResponseTopic `kafka:"min=v0,max=v5"` |
| 50 | } |
| 51 | |
| 52 | func (r *Response) ApiKey() protocol.ApiKey { return protocol.CreateTopics } |
| 53 |
nothing calls this directly
no outgoing calls
no test coverage detected