RemoveActivityByForeignID removes an activity from the feed (if present), using the provided foreignID string argument as the foreign_id field of the activity.
(ctx context.Context, foreignID string)
| 88 | // RemoveActivityByForeignID removes an activity from the feed (if present), using the provided |
| 89 | // foreignID string argument as the foreign_id field of the activity. |
| 90 | func (f *feed) RemoveActivityByForeignID(ctx context.Context, foreignID string) (*RemoveActivityResponse, error) { |
| 91 | return f.client.removeActivityByForeignID(ctx, f, foreignID) |
| 92 | } |
| 93 | |
| 94 | // Follow follows the provided feed (which must be a FlatFeed), applying the provided FollowFeedOptions, |
| 95 | // if any. |
nothing calls this directly
no test coverage detected