| 97 | } |
| 98 | |
| 99 | type listGroupsResponseV1 struct { |
| 100 | // ThrottleTimeMS holds the duration in milliseconds for which the request |
| 101 | // was throttled due to quota violation (Zero if the request did not violate |
| 102 | // any quota) |
| 103 | ThrottleTimeMS int32 |
| 104 | |
| 105 | // ErrorCode holds response error code |
| 106 | ErrorCode int16 |
| 107 | Groups []listGroupsResponseGroupV1 |
| 108 | } |
| 109 | |
| 110 | func (t listGroupsResponseV1) size() int32 { |
| 111 | return sizeofInt32(t.ThrottleTimeMS) + |
nothing calls this directly
no outgoing calls
no test coverage detected