#[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::sh_weaver::collab::InviteView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetInvites<'a> {
#[serde(borrow)]
pub actor: AtIdentifier<'a>,
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(default = "_default_direction")]
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub direction: Option<CowStr<'a>>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(default = "_default_status")]
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub status: Option<CowStr<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetInvitesOutput<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub cursor: Option<CowStr<'a>>,
#[serde(borrow)]
pub invites: Vec<InviteView<'a>>,
}
pub struct GetInvitesResponse;
impl jacquard_common::xrpc::XrpcResp for GetInvitesResponse {
const NSID: &'static str = "sh.weaver.collab.getInvites";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetInvitesOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetInvites<'a> {
const NSID: &'static str = "sh.weaver.collab.getInvites";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetInvitesResponse;
}
pub struct GetInvitesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetInvitesRequest {
const PATH: &'static str = "/xrpc/sh.weaver.collab.getInvites";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetInvites<'de>;
type Response = GetInvitesResponse;
}
fn _default_direction() -> Option<CowStr<'static>> {
Some(CowStr::from("all"))
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
fn _default_status() -> Option<CowStr<'static>> {
Some(CowStr::from("all"))
}
pub mod get_invites_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 Actor;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Actor = Unset;
}
pub struct SetActor<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetActor<S> {}
impl<S: State> State for SetActor<S> {
type Actor = Set<members::actor>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct actor(());
}
}
pub struct GetInvitesBuilder<'a, S: get_invites_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (
Option<AtIdentifier<'a>>,
Option<CowStr<'a>>,
Option<CowStr<'a>>,
Option<i64>,
Option<CowStr<'a>>,
),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetInvites<'a> {
pub fn new() -> GetInvitesBuilder<'a, get_invites_state::Empty> {
GetInvitesBuilder::new()
}
}
impl<'a> GetInvitesBuilder<'a, get_invites_state::Empty> {
pub fn new() -> Self {
GetInvitesBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetInvitesBuilder<'a, S>
where
S: get_invites_state::State,
S::Actor: get_invites_state::IsUnset,
{
pub fn actor(
mut self,
value: impl Into<AtIdentifier<'a>>,
) -> GetInvitesBuilder<'a, get_invites_state::SetActor<S>> {
self._fields.0 = Option::Some(value.into());
GetInvitesBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_invites_state::State> GetInvitesBuilder<'a, S> {
pub fn cursor(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.1 = value;
self
}
}
impl<'a, S: get_invites_state::State> GetInvitesBuilder<'a, S> {
pub fn direction(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_direction(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.2 = value;
self
}
}
impl<'a, S: get_invites_state::State> GetInvitesBuilder<'a, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<'a, S: get_invites_state::State> GetInvitesBuilder<'a, S> {
pub fn status(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_status(mut self, value: Option<CowStr<'a>>) -> Self {
self._fields.4 = value;
self
}
}
impl<'a, S> GetInvitesBuilder<'a, S>
where
S: get_invites_state::State,
S::Actor: get_invites_state::IsSet,
{
pub fn build(self) -> GetInvites<'a> {
GetInvites {
actor: self._fields.0.unwrap(),
cursor: self._fields.1,
direction: self._fields.2,
limit: self._fields.3,
status: self._fields.4,
}
}
}