jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: games.gamesgamesgamesgames.org.getProfile
//
// 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_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::games_gamesgamesgamesgames::OrgProfileDetailView;

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase")]
pub struct GetProfileOutput<'a> {
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub profile: Option<OrgProfileDetailView<'a>>,
}

/// XRPC request marker type.

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct GetProfile;
/// Response type for games.gamesgamesgamesgames.org.getProfile
pub struct GetProfileResponse;
impl jacquard_common::xrpc::XrpcResp for GetProfileResponse {
    const NSID: &'static str = "games.gamesgamesgamesgames.org.getProfile";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = GetProfileOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl jacquard_common::xrpc::XrpcRequest for GetProfile {
    const NSID: &'static str = "games.gamesgamesgamesgames.org.getProfile";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetProfileResponse;
}

/// Endpoint type for games.gamesgamesgamesgames.org.getProfile
pub struct GetProfileRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetProfileRequest {
    const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.org.getProfile";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<'de> = GetProfile;
    type Response = GetProfileResponse;
}