jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: ooo.bsky.authfetch.destroyRepo
//
// 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::{BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
/** Request marker for the `ooo.bsky.authfetch.destroyRepo` procedure.

This endpoint has no request parameters or input body; send this marker with `jacquard::Client`.*/

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct DestroyRepo;
/** Response marker for the `ooo.bsky.authfetch.destroyRepo` procedure.

Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output<S>`, which is `()` for this endpoint.*/
pub struct DestroyRepoResponse;
impl jacquard_common::xrpc::XrpcResp for DestroyRepoResponse {
    const NSID: &'static str = "ooo.bsky.authfetch.destroyRepo";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ();
    type Err = jacquard_common::xrpc::GenericError;
}

impl jacquard_common::xrpc::XrpcRequest for DestroyRepo {
    const NSID: &'static str = "ooo.bsky.authfetch.destroyRepo";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = DestroyRepoResponse;
}

/** Endpoint marker for the `ooo.bsky.authfetch.destroyRepo` procedure.

Path: `/xrpc/ooo.bsky.authfetch.destroyRepo`. The request payload type is `DestroyRepo`; use this marker with lower-level `XrpcEndpoint` APIs when you need endpoint metadata.*/
pub struct DestroyRepoRequest;
impl jacquard_common::xrpc::XrpcEndpoint for DestroyRepoRequest {
    const PATH: &'static str = "/xrpc/ooo.bsky.authfetch.destroyRepo";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<S: BosStr> = DestroyRepo;
    type Response = DestroyRepoResponse;
}