#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::tools_ozone::moderation::ModEventViewDetail;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetEvent {
pub id: i64,
}
#[jacquard_derive::lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetEventOutput<'a> {
#[serde(flatten)]
#[serde(borrow)]
pub value: ModEventViewDetail<'a>,
}
pub struct GetEventResponse;
impl jacquard_common::xrpc::XrpcResp for GetEventResponse {
const NSID: &'static str = "tools.ozone.moderation.getEvent";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetEventOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl jacquard_common::xrpc::XrpcRequest for GetEvent {
const NSID: &'static str = "tools.ozone.moderation.getEvent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetEventResponse;
}
pub struct GetEventRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetEventRequest {
const PATH: &'static str = "/xrpc/tools.ozone.moderation.getEvent";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetEvent;
type Response = GetEventResponse;
}
pub mod get_event_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 Id;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Id = Unset;
}
pub struct SetId<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetId<S> {}
impl<S: State> State for SetId<S> {
type Id = Set<members::id>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct id(());
}
}
pub struct GetEventBuilder<S: get_event_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<i64>,),
}
impl GetEvent {
pub fn new() -> GetEventBuilder<get_event_state::Empty> {
GetEventBuilder::new()
}
}
impl GetEventBuilder<get_event_state::Empty> {
pub fn new() -> Self {
GetEventBuilder {
_state: PhantomData,
_fields: (None,),
}
}
}
impl<S> GetEventBuilder<S>
where
S: get_event_state::State,
S::Id: get_event_state::IsUnset,
{
pub fn id(
mut self,
value: impl Into<i64>,
) -> GetEventBuilder<get_event_state::SetId<S>> {
self._fields.0 = Option::Some(value.into());
GetEventBuilder {
_state: PhantomData,
_fields: self._fields,
}
}
}
impl<S> GetEventBuilder<S>
where
S: get_event_state::State,
S::Id: get_event_state::IsSet,
{
pub fn build(self) -> GetEvent {
GetEvent {
id: self._fields.0.unwrap(),
}
}
}