#[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>,
>,
}
#[derive(
Debug,
Clone,
Copy,
PartialEq,
Eq,
serde::Serialize,
serde::Deserialize,
jacquard_derive::IntoStatic
)]
pub struct 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;
}
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;
}