jacquard-api 0.11.1

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: place.stream.badge.getValidBadges
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[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>>,
}

/// Response type for place.stream.badge.getValidBadges
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;
}

/// Endpoint type for place.stream.badge.getValidBadges
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 {}
    }
    /// State trait tracking which required fields have been set
    pub trait State: sealed::Sealed {}
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {}
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {}
}

/// Builder for constructing an instance of this type
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> {
    /// Create a new builder for this type
    pub fn new() -> GetValidBadgesBuilder<'a, get_valid_badges_state::Empty> {
        GetValidBadgesBuilder::new()
    }
}

impl<'a> GetValidBadgesBuilder<'a, get_valid_badges_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        GetValidBadgesBuilder {
            _state: PhantomData,
            _fields: (None,),
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: get_valid_badges_state::State> GetValidBadgesBuilder<'a, S> {
    /// Set the `streamer` field (optional)
    pub fn streamer(mut self, value: impl Into<Option<Did<'a>>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `streamer` field to an Option value (optional)
    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,
{
    /// Build the final struct
    pub fn build(self) -> GetValidBadges<'a> {
        GetValidBadges {
            streamer: self._fields.0,
        }
    }
}