#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_derive::{IntoStatic, lexicon, open_union};
use serde::{Serialize, Deserialize};
use crate::games_gamesgamesgamesgames::ActorProfileDetailView;
use crate::games_gamesgamesgamesgames::OrgProfileDetailView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetProfile<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub handle: Option<CowStr<'a>>,
}
#[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 handle: Option<CowStr<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub profile: Option<GetProfileOutputProfile<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub profile_type: Option<GetProfileOutputProfileType<'a>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type")]
#[serde(bound(deserialize = "'de: 'a"))]
pub enum GetProfileOutputProfile<'a> {
#[serde(rename = "games.gamesgamesgamesgames.defs#actorProfileDetailView")]
ActorProfileDetailView(Box<ActorProfileDetailView<'a>>),
#[serde(rename = "games.gamesgamesgamesgames.defs#orgProfileDetailView")]
OrgProfileDetailView(Box<OrgProfileDetailView<'a>>),
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum GetProfileOutputProfileType<'a> {
Actor,
Org,
Other(CowStr<'a>),
}
impl<'a> GetProfileOutputProfileType<'a> {
pub fn as_str(&self) -> &str {
match self {
Self::Actor => "actor",
Self::Org => "org",
Self::Other(s) => s.as_ref(),
}
}
}
impl<'a> From<&'a str> for GetProfileOutputProfileType<'a> {
fn from(s: &'a str) -> Self {
match s {
"actor" => Self::Actor,
"org" => Self::Org,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> From<String> for GetProfileOutputProfileType<'a> {
fn from(s: String) -> Self {
match s.as_str() {
"actor" => Self::Actor,
"org" => Self::Org,
_ => Self::Other(CowStr::from(s)),
}
}
}
impl<'a> core::fmt::Display for GetProfileOutputProfileType<'a> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<'a> AsRef<str> for GetProfileOutputProfileType<'a> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<'a> serde::Serialize for GetProfileOutputProfileType<'a> {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, 'a> serde::Deserialize<'de> for GetProfileOutputProfileType<'a>
where
'de: 'a,
{
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = <&'de str>::deserialize(deserializer)?;
Ok(Self::from(s))
}
}
impl<'a> Default for GetProfileOutputProfileType<'a> {
fn default() -> Self {
Self::Other(Default::default())
}
}
impl jacquard_common::IntoStatic for GetProfileOutputProfileType<'_> {
type Output = GetProfileOutputProfileType<'static>;
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<'de> = GetProfileOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetProfile<'a> {
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<'de> = GetProfile<'de>;
type Response = GetProfileResponse;
}
pub mod get_profile_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[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<'a, S: get_profile_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<CowStr<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetProfile<'a> {
pub fn new() -> GetProfileBuilder<'a, get_profile_state::Empty> {
GetProfileBuilder::new()
}
}
impl<'a> GetProfileBuilder<'a, get_profile_state::Empty> {
pub fn new() -> Self {
GetProfileBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_profile_state::State> GetProfileBuilder<'a, S> {
pub fn handle(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_handle(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> GetProfileBuilder<'a, S>
where
S: get_profile_state::State,
{
pub fn build(self) -> GetProfile<'a> {
GetProfile {
handle: self._fields.0,
}
}
}