fn _default_direction() -> std::option::Option<jacquard_common::CowStr<'static>> {
Some(jacquard_common::CowStr::from("all"))
}
fn _default_limit() -> std::option::Option<i64> {
Some(50i64)
}
fn _default_status() -> std::option::Option<jacquard_common::CowStr<'static>> {
Some(jacquard_common::CowStr::from("all"))
}
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetInvites<'a> {
#[serde(borrow)]
pub actor: jacquard_common::types::ident::AtIdentifier<'a>,
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cursor: std::option::Option<jacquard_common::CowStr<'a>>,
#[serde(default = "_default_direction")]
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub direction: std::option::Option<jacquard_common::CowStr<'a>>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "std::option::Option::is_none")]
pub limit: std::option::Option<i64>,
#[serde(default = "_default_status")]
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub status: std::option::Option<jacquard_common::CowStr<'a>>,
}
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> {
_phantom_state: ::core::marker::PhantomData<fn() -> S>,
__unsafe_private_named: (
::core::option::Option<jacquard_common::types::ident::AtIdentifier<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<jacquard_common::CowStr<'a>>,
::core::option::Option<i64>,
::core::option::Option<jacquard_common::CowStr<'a>>,
),
_phantom: ::core::marker::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 {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: (None, None, None, None, None),
_phantom: ::core::marker::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<jacquard_common::types::ident::AtIdentifier<'a>>,
) -> GetInvitesBuilder<'a, get_invites_state::SetActor<S>> {
self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
GetInvitesBuilder {
_phantom_state: ::core::marker::PhantomData,
__unsafe_private_named: self.__unsafe_private_named,
_phantom: ::core::marker::PhantomData,
}
}
}
impl<'a, S: get_invites_state::State> GetInvitesBuilder<'a, S> {
pub fn cursor(
mut self,
value: impl Into<Option<jacquard_common::CowStr<'a>>>,
) -> Self {
self.__unsafe_private_named.1 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<jacquard_common::CowStr<'a>>) -> Self {
self.__unsafe_private_named.1 = value;
self
}
}
impl<'a, S: get_invites_state::State> GetInvitesBuilder<'a, S> {
pub fn direction(
mut self,
value: impl Into<Option<jacquard_common::CowStr<'a>>>,
) -> Self {
self.__unsafe_private_named.2 = value.into();
self
}
pub fn maybe_direction(
mut self,
value: Option<jacquard_common::CowStr<'a>>,
) -> Self {
self.__unsafe_private_named.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.__unsafe_private_named.3 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self.__unsafe_private_named.3 = value;
self
}
}
impl<'a, S: get_invites_state::State> GetInvitesBuilder<'a, S> {
pub fn status(
mut self,
value: impl Into<Option<jacquard_common::CowStr<'a>>>,
) -> Self {
self.__unsafe_private_named.4 = value.into();
self
}
pub fn maybe_status(mut self, value: Option<jacquard_common::CowStr<'a>>) -> Self {
self.__unsafe_private_named.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.__unsafe_private_named.0.unwrap(),
cursor: self.__unsafe_private_named.1,
direction: self.__unsafe_private_named.2,
limit: self.__unsafe_private_named.3,
status: self.__unsafe_private_named.4,
}
}
}
#[jacquard_derive::lexicon]
#[derive(
serde::Serialize,
serde::Deserialize,
Debug,
Clone,
PartialEq,
Eq,
jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct GetInvitesOutput<'a> {
#[serde(skip_serializing_if = "std::option::Option::is_none")]
#[serde(borrow)]
pub cursor: std::option::Option<jacquard_common::CowStr<'a>>,
#[serde(borrow)]
pub invites: Vec<crate::sh_weaver::collab::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;
}