#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::CowStr;
use jacquard_common::types::ident::AtIdentifier;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::fm_teal::alpha::feed::PlayView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetPlay<'a> {
#[serde(borrow)]
pub author_did: AtIdentifier<'a>,
#[serde(borrow)]
pub rkey: CowStr<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetPlayOutput<'a> {
#[serde(borrow)]
pub play: PlayView<'a>,
}
pub struct GetPlayResponse;
impl jacquard_common::xrpc::XrpcResp for GetPlayResponse {
const NSID: &'static str = "fm.teal.alpha.feed.getPlay";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetPlayOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetPlay<'a> {
const NSID: &'static str = "fm.teal.alpha.feed.getPlay";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetPlayResponse;
}
pub struct GetPlayRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetPlayRequest {
const PATH: &'static str = "/xrpc/fm.teal.alpha.feed.getPlay";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetPlay<'de>;
type Response = GetPlayResponse;
}
pub mod get_play_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 {
type AuthorDid;
type Rkey;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type AuthorDid = Unset;
type Rkey = Unset;
}
pub struct SetAuthorDid<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetAuthorDid<S> {}
impl<S: State> State for SetAuthorDid<S> {
type AuthorDid = Set<members::author_did>;
type Rkey = S::Rkey;
}
pub struct SetRkey<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetRkey<S> {}
impl<S: State> State for SetRkey<S> {
type AuthorDid = S::AuthorDid;
type Rkey = Set<members::rkey>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct author_did(());
pub struct rkey(());
}
}
pub struct GetPlayBuilder<'a, S: get_play_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtIdentifier<'a>>, Option<CowStr<'a>>),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetPlay<'a> {
pub fn new() -> GetPlayBuilder<'a, get_play_state::Empty> {
GetPlayBuilder::new()
}
}
impl<'a> GetPlayBuilder<'a, get_play_state::Empty> {
pub fn new() -> Self {
GetPlayBuilder {
_state: PhantomData,
_fields: (None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetPlayBuilder<'a, S>
where
S: get_play_state::State,
S::AuthorDid: get_play_state::IsUnset,
{
pub fn author_did(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> GetPlayBuilder<'a, get_play_state::SetAuthorDid<S>> {
self._fields.0 = Option::Some(value.into());
GetPlayBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetPlayBuilder<'a, S>
where
S: get_play_state::State,
S::Rkey: get_play_state::IsUnset,
{
pub fn rkey(
mut self,
value: impl Into<CowStr<'a>>,
) -> GetPlayBuilder<'a, get_play_state::SetRkey<S>> {
self._fields.1 = Option::Some(value.into());
GetPlayBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetPlayBuilder<'a, S>
where
S: get_play_state::State,
S::AuthorDid: get_play_state::IsSet,
S::Rkey: get_play_state::IsSet,
{
pub fn build(self) -> GetPlay<'a> {
GetPlay {
author_did: self._fields.0.unwrap(),
rkey: self._fields.1.unwrap(),
}
}
}