#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::string::AtUri;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::sh_weaver::actor::ProfileViewBasic;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetResourceParticipants<'a> {
#[serde(borrow)]
pub resource: AtUri<'a>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetResourceParticipantsOutput<'a> {
#[serde(borrow)]
pub owner: ProfileViewBasic<'a>,
#[serde(borrow)]
pub participants: Vec<ProfileViewBasic<'a>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub viewer_can_edit: Option<bool>,
}
pub struct GetResourceParticipantsResponse;
impl jacquard_common::xrpc::XrpcResp for GetResourceParticipantsResponse {
const NSID: &'static str = "sh.weaver.collab.getResourceParticipants";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetResourceParticipantsOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetResourceParticipants<'a> {
const NSID: &'static str = "sh.weaver.collab.getResourceParticipants";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetResourceParticipantsResponse;
}
pub struct GetResourceParticipantsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetResourceParticipantsRequest {
const PATH: &'static str = "/xrpc/sh.weaver.collab.getResourceParticipants";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetResourceParticipants<'de>;
type Response = GetResourceParticipantsResponse;
}
pub mod get_resource_participants_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 Resource;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Resource = Unset;
}
pub struct SetResource<S: State = Empty>(PhantomData<fn() -> S>);
impl<S: State> sealed::Sealed for SetResource<S> {}
impl<S: State> State for SetResource<S> {
type Resource = Set<members::resource>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct resource(());
}
}
pub struct GetResourceParticipantsBuilder<
'a,
S: get_resource_participants_state::State,
> {
_state: PhantomData<fn() -> S>,
_fields: (Option<AtUri<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetResourceParticipants<'a> {
pub fn new() -> GetResourceParticipantsBuilder<
'a,
get_resource_participants_state::Empty,
> {
GetResourceParticipantsBuilder::new()
}
}
impl<'a> GetResourceParticipantsBuilder<'a, get_resource_participants_state::Empty> {
pub fn new() -> Self {
GetResourceParticipantsBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetResourceParticipantsBuilder<'a, S>
where
S: get_resource_participants_state::State,
S::Resource: get_resource_participants_state::IsUnset,
{
pub fn resource(
mut self,
value: impl Into<AtUri<'a>>,
) -> GetResourceParticipantsBuilder<
'a,
get_resource_participants_state::SetResource<S>,
> {
self._fields.0 = Option::Some(value.into());
GetResourceParticipantsBuilder {
_state: PhantomData,
_fields: self._fields,
_lifetime: PhantomData,
}
}
}
impl<'a, S> GetResourceParticipantsBuilder<'a, S>
where
S: get_resource_participants_state::State,
S::Resource: get_resource_participants_state::IsSet,
{
pub fn build(self) -> GetResourceParticipants<'a> {
GetResourceParticipants {
resource: self._fields.0.unwrap(),
}
}
}