jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: place.stream.live.startLivestream
//
// 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, Cid, UriValue};
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::place_stream::livestream::Livestream;

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StartLivestream<'a> {
    ///Whether to create a Bluesky post announcing the livestream.
    #[serde(skip_serializing_if = "Option::is_none")]
    pub create_bluesky_post: Option<bool>,
    #[serde(borrow)]
    pub livestream: Livestream<'a>,
    ///The DID of the streamer.
    #[serde(borrow)]
    pub streamer: Did<'a>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct StartLivestreamOutput<'a> {
    ///The CID of the livestream record.
    #[serde(borrow)]
    pub cid: Cid<'a>,
    ///The URI of the livestream record.
    #[serde(borrow)]
    pub uri: UriValue<'a>,
}

/// Response type for place.stream.live.startLivestream
pub struct StartLivestreamResponse;
impl jacquard_common::xrpc::XrpcResp for StartLivestreamResponse {
    const NSID: &'static str = "place.stream.live.startLivestream";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = StartLivestreamOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for StartLivestream<'a> {
    const NSID: &'static str = "place.stream.live.startLivestream";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = StartLivestreamResponse;
}

/// Endpoint type for place.stream.live.startLivestream
pub struct StartLivestreamRequest;
impl jacquard_common::xrpc::XrpcEndpoint for StartLivestreamRequest {
    const PATH: &'static str = "/xrpc/place.stream.live.startLivestream";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = StartLivestream<'de>;
    type Response = StartLivestreamResponse;
}

pub mod start_livestream_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 {
        type Livestream;
        type Streamer;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type Livestream = Unset;
        type Streamer = Unset;
    }
    ///State transition - sets the `livestream` field to Set
    pub struct SetLivestream<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetLivestream<S> {}
    impl<S: State> State for SetLivestream<S> {
        type Livestream = Set<members::livestream>;
        type Streamer = S::Streamer;
    }
    ///State transition - sets the `streamer` field to Set
    pub struct SetStreamer<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetStreamer<S> {}
    impl<S: State> State for SetStreamer<S> {
        type Livestream = S::Livestream;
        type Streamer = Set<members::streamer>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `livestream` field
        pub struct livestream(());
        ///Marker type for the `streamer` field
        pub struct streamer(());
    }
}

/// Builder for constructing an instance of this type
pub struct StartLivestreamBuilder<'a, S: start_livestream_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (Option<bool>, Option<Livestream<'a>>, Option<Did<'a>>),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> StartLivestream<'a> {
    /// Create a new builder for this type
    pub fn new() -> StartLivestreamBuilder<'a, start_livestream_state::Empty> {
        StartLivestreamBuilder::new()
    }
}

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

impl<'a, S: start_livestream_state::State> StartLivestreamBuilder<'a, S> {
    /// Set the `createBlueskyPost` field (optional)
    pub fn create_bluesky_post(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `createBlueskyPost` field to an Option value (optional)
    pub fn maybe_create_bluesky_post(mut self, value: Option<bool>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<'a, S> StartLivestreamBuilder<'a, S>
where
    S: start_livestream_state::State,
    S::Livestream: start_livestream_state::IsUnset,
{
    /// Set the `livestream` field (required)
    pub fn livestream(
        mut self,
        value: impl Into<Livestream<'a>>,
    ) -> StartLivestreamBuilder<'a, start_livestream_state::SetLivestream<S>> {
        self._fields.1 = Option::Some(value.into());
        StartLivestreamBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> StartLivestreamBuilder<'a, S>
where
    S: start_livestream_state::State,
    S::Streamer: start_livestream_state::IsUnset,
{
    /// Set the `streamer` field (required)
    pub fn streamer(
        mut self,
        value: impl Into<Did<'a>>,
    ) -> StartLivestreamBuilder<'a, start_livestream_state::SetStreamer<S>> {
        self._fields.2 = Option::Some(value.into());
        StartLivestreamBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S> StartLivestreamBuilder<'a, S>
where
    S: start_livestream_state::State,
    S::Livestream: start_livestream_state::IsSet,
    S::Streamer: start_livestream_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> StartLivestream<'a> {
        StartLivestream {
            create_bluesky_post: self._fields.0,
            livestream: self._fields.1.unwrap(),
            streamer: self._fields.2.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> StartLivestream<'a> {
        StartLivestream {
            create_bluesky_post: self._fields.0,
            livestream: self._fields.1.unwrap(),
            streamer: self._fields.2.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}