jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: network.slices.slice.syncUserCollections
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[allow(unused_imports)]
use alloc::collections::BTreeMap;

#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct SyncUserCollections<'a> {
    ///AT-URI of the slice to sync user data into
    #[serde(borrow)]
    pub slice: CowStr<'a>,
    ///Timeout in seconds for the sync operation  Defaults to `30`.
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default = "_default_sync_user_collections_timeout_seconds")]
    pub timeout_seconds: Option<i64>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct SyncUserCollectionsOutput<'a> {
    ///Number of records successfully synced
    pub records_synced: i64,
    ///Number of repositories processed during sync
    pub repos_processed: i64,
    ///Whether the sync operation exceeded the timeout
    pub timed_out: bool,
}

/// Response type for network.slices.slice.syncUserCollections
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<'de> = SyncUserCollectionsOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for SyncUserCollections<'a> {
    const NSID: &'static str = "network.slices.slice.syncUserCollections";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = SyncUserCollectionsResponse;
}

/// Endpoint type for network.slices.slice.syncUserCollections
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<'de> = SyncUserCollections<'de>;
    type Response = SyncUserCollectionsResponse;
}

fn _default_sync_user_collections_timeout_seconds() -> Option<i64> {
    Some(30i64)
}