jacquard-api 0.10.2

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

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

/// XRPC request marker type
#[derive(
    Debug,
    Clone,
    Copy,
    PartialEq,
    Eq,
    serde::Serialize,
    serde::Deserialize,
    jacquard_derive::IntoStatic
)]
pub struct GetProfile;
/// Response type for
///games.gamesgamesgamesgames.actor.getProfile
pub struct GetProfileResponse;
impl jacquard_common::xrpc::XrpcResp for GetProfileResponse {
    const NSID: &'static str = "games.gamesgamesgamesgames.actor.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.actor.getProfile";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = GetProfileResponse;
}

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