| 3 | import "time" |
| 4 | |
| 5 | type UpdateFeaturesResponse struct { |
| 6 | Version int16 |
| 7 | |
| 8 | ThrottleTime time.Duration |
| 9 | |
| 10 | ErrorCode KError |
| 11 | ErrorMessage *string |
| 12 | |
| 13 | // Results contains the per-feature update results |
| 14 | Results []UpdatableFeatureResult |
| 15 | } |
| 16 | |
| 17 | func (r *UpdateFeaturesResponse) setVersion(v int16) { |
| 18 | r.Version = v |
nothing calls this directly
no outgoing calls
no test coverage detected