Interaction constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory Interaction({
/// The unique namespace for this lex object.
///
/// `app.bsky.feed.defs#interaction`
@Default(appBskyFeedDefsInteraction) @JsonKey(name: r'$type') String $type,
@AtUriConverter() AtUri? item,
@UInteractionEventConverter() UInteractionEvent? event,
/// Context on a feed item that was originally supplied by the feed
/// generator on getFeedSkeleton.
String? feedContext,
/// Contains unknown objects not defined in Lexicon.
@JsonKey(name: r'$unknown') Map<String, dynamic>? $unknown,
}) = _Interaction;