(ctx context.Context, r updateStatusRequest)
| 95 | } |
| 96 | |
| 97 | func (c *ModerationClient) updateStatus(ctx context.Context, r updateStatusRequest) error { |
| 98 | endpoint := c.client.makeEndpoint("moderation/status/") |
| 99 | |
| 100 | _, err := c.client.post(ctx, endpoint, r, c.client.authenticator.moderationAuth) |
| 101 | return err |
| 102 | } |
| 103 | |
| 104 | type UpdateStatusBatchRequest struct { |
| 105 | ModeratorID string `json:"moderator_id"` |
no test coverage detected