sendInteractions method

Future<XRPCResponse<EmptyData>> sendInteractions({
  1. required List<Interaction> interactions,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Send information about interactions with feed items back to the feed generator that served them.

Implementation

Future<XRPCResponse<EmptyData>> sendInteractions({
  required List<Interaction> interactions,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await appBskyFeedSendInteractions(
  interactions: interactions,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);