(res *async.LaunchEmptyResult)
| 274 | } |
| 275 | |
| 276 | func teamMemberRemoveJSONFromDropbox(res *async.LaunchEmptyResult) teamMemberMutationJSON { |
| 277 | result := teamMemberMutationJSON{Type: teamJSONTypeMemberRemove} |
| 278 | if res == nil { |
| 279 | return result |
| 280 | } |
| 281 | result.Tag = res.Tag |
| 282 | result.AsyncJobID = res.AsyncJobId |
| 283 | return result |
| 284 | } |
| 285 | |
| 286 | func teamMemberAddStatus(res *team.MembersAddLaunch) string { |
| 287 | if res == nil { |
no outgoing calls
no test coverage detected