#[allow(unused_imports)]
use alloc::collections::BTreeMap;
use crate::games_gamesgamesgamesgames::ActorProfileDetailView;
use crate::games_gamesgamesgamesgames::OrgProfileDetailView;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::{IntoStatic, open_union};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetProfile<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub handle: Option<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetProfileOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub handle: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub profile: Option<GetProfileOutputProfile<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub profile_type: Option<GetProfileOutputProfileType<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum GetProfileOutputProfile<S: BosStr = DefaultStr> {
#[serde(rename = "games.gamesgamesgamesgames.defs#actorProfileDetailView")]
ActorProfileDetailView(Box<ActorProfileDetailView<S>>),
#[serde(rename = "games.gamesgamesgamesgames.defs#orgProfileDetailView")]
OrgProfileDetailView(Box<OrgProfileDetailView<S>>),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum GetProfileOutputProfileType<S: BosStr = DefaultStr> {
Actor,
Org,
Other(S),
}
impl<S: BosStr> GetProfileOutputProfileType<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Actor => "actor",
Self::Org => "org",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"actor" => Self::Actor,
"org" => Self::Org,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> core::fmt::Display for GetProfileOutputProfileType<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> AsRef<str> for GetProfileOutputProfileType<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> Serialize for GetProfileOutputProfileType<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for GetProfileOutputProfileType<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr + Default> Default for GetProfileOutputProfileType<S> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl<S: BosStr> jacquard_common::IntoStatic for GetProfileOutputProfileType<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = GetProfileOutputProfileType<S::Output>;
fn into_static(self) -> Self::Output {
match self {
GetProfileOutputProfileType::Actor => GetProfileOutputProfileType::Actor,
GetProfileOutputProfileType::Org => GetProfileOutputProfileType::Org,
GetProfileOutputProfileType::Other(v) => {
GetProfileOutputProfileType::Other(v.into_static())
}
}
}
}
pub struct GetProfileResponse;
impl jacquard_common::xrpc::XrpcResp for GetProfileResponse {
const NSID: &'static str = "games.gamesgamesgamesgames.getProfile";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetProfileOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetProfile<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.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.getProfile";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetProfile<S>;
type Response = GetProfileResponse;
}
pub mod get_profile_state {
pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct GetProfileBuilder<S: BosStr, St: get_profile_state::State> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>,),
_type: PhantomData<fn() -> S>,
}
impl<S: BosStr> GetProfile<S> {
pub fn new() -> GetProfileBuilder<S, get_profile_state::Empty> {
GetProfileBuilder::new()
}
}
impl<S: BosStr> GetProfileBuilder<S, get_profile_state::Empty> {
pub fn new() -> Self {
GetProfileBuilder {
_state: PhantomData,
_fields: (None,),
_type: PhantomData,
}
}
}
impl<S: BosStr, St: get_profile_state::State> GetProfileBuilder<S, St> {
pub fn handle(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_handle(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<S: BosStr, St> GetProfileBuilder<S, St>
where
St: get_profile_state::State,
{
pub fn build(self) -> GetProfile<S> {
GetProfile {
handle: self._fields.0,
}
}
}