#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::string::Did;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::place_stream::badge::BadgeView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetValidBadges<'a> {
#[serde(skip_serializing_if = "Option::is_none")]
#[serde(borrow)]
pub streamer: Option<Did<'a>>,
}
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetValidBadgesOutput<'a> {
#[serde(borrow)]
pub badges: Vec<BadgeView<'a>>,
}
pub struct GetValidBadgesResponse;
impl jacquard_common::xrpc::XrpcResp for GetValidBadgesResponse {
const NSID: &'static str = "place.stream.badge.getValidBadges";
const ENCODING: &'static str = "application/json";
type Output<'de> = GetValidBadgesOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl<'a> jacquard_common::xrpc::XrpcRequest for GetValidBadges<'a> {
const NSID: &'static str = "place.stream.badge.getValidBadges";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetValidBadgesResponse;
}
pub struct GetValidBadgesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetValidBadgesRequest {
const PATH: &'static str = "/xrpc/place.stream.badge.getValidBadges";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<'de> = GetValidBadges<'de>;
type Response = GetValidBadgesResponse;
}
pub mod get_valid_badges_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 {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct GetValidBadgesBuilder<'a, S: get_valid_badges_state::State> {
_state: PhantomData<fn() -> S>,
_fields: (Option<Did<'a>>,),
_lifetime: PhantomData<&'a ()>,
}
impl<'a> GetValidBadges<'a> {
pub fn new() -> GetValidBadgesBuilder<'a, get_valid_badges_state::Empty> {
GetValidBadgesBuilder::new()
}
}
impl<'a> GetValidBadgesBuilder<'a, get_valid_badges_state::Empty> {
pub fn new() -> Self {
GetValidBadgesBuilder {
_state: PhantomData,
_fields: (None,),
_lifetime: PhantomData,
}
}
}
impl<'a, S: get_valid_badges_state::State> GetValidBadgesBuilder<'a, S> {
pub fn streamer(mut self, value: impl Into<Option<Did<'a>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_streamer(mut self, value: Option<Did<'a>>) -> Self {
self._fields.0 = value;
self
}
}
impl<'a, S> GetValidBadgesBuilder<'a, S>
where
S: get_valid_badges_state::State,
{
pub fn build(self) -> GetValidBadges<'a> {
GetValidBadges {
streamer: self._fields.0,
}
}
}