#![allow(clippy::pedantic, clippy::nursery, clippy::all)]
use serde::{Deserialize, Serialize};
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct MatchAndContactIndex {
pub contact_index: i64,
#[serde(rename = "match")]
pub r#match: crate::app::bsky::actor::defs::ProfileView,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct Notification {
pub from: proto_blue_syntax::Did,
pub to: proto_blue_syntax::Did,
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct SyncStatus {
pub matches_count: i64,
pub synced_at: proto_blue_syntax::Datetime,
}