(memberId string, memberAssignment []byte)
| 190 | } |
| 191 | |
| 192 | func (r *SyncGroupRequest) AddGroupAssignment(memberId string, memberAssignment []byte) { |
| 193 | r.GroupAssignments = append(r.GroupAssignments, SyncGroupRequestAssignment{ |
| 194 | MemberId: memberId, |
| 195 | Assignment: memberAssignment, |
| 196 | }) |
| 197 | } |
| 198 | |
| 199 | func (r *SyncGroupRequest) AddGroupAssignmentMember( |
| 200 | memberId string, |
no outgoing calls