| 3 | import "time" |
| 4 | |
| 5 | type OffsetCommitResponse struct { |
| 6 | Version int16 |
| 7 | ThrottleTimeMs int32 |
| 8 | Errors map[string]map[int32]KError |
| 9 | } |
| 10 | |
| 11 | func (r *OffsetCommitResponse) setVersion(v int16) { |
| 12 | r.Version = v |
nothing calls this directly
no outgoing calls
no test coverage detected