#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct SyncUserCollections<S: BosStr = DefaultStr> {
pub slice: S,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(default = "_default_sync_user_collections_timeout_seconds")]
pub timeout_seconds: Option<i64>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct SyncUserCollectionsOutput<S: BosStr = DefaultStr> {
pub records_synced: i64,
pub repos_processed: i64,
pub timed_out: bool,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct SyncUserCollectionsResponse;
impl jacquard_common::xrpc::XrpcResp for SyncUserCollectionsResponse {
const NSID: &'static str = "network.slices.slice.syncUserCollections";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = SyncUserCollectionsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for SyncUserCollections<S> {
const NSID: &'static str = "network.slices.slice.syncUserCollections";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Response = SyncUserCollectionsResponse;
}
pub struct SyncUserCollectionsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for SyncUserCollectionsRequest {
const PATH: &'static str = "/xrpc/network.slices.slice.syncUserCollections";
const METHOD: jacquard_common::xrpc::XrpcMethod =
jacquard_common::xrpc::XrpcMethod::Procedure("application/json");
type Request<S: BosStr> = SyncUserCollections<S>;
type Response = SyncUserCollectionsResponse;
}
fn _default_sync_user_collections_timeout_seconds() -> Option<i64> {
Some(30i64)
}