jacquard-api 0.10.2

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

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct Authorize<'a> {
    #[serde(borrow)]
    pub authorize_options: jacquard_common::types::value::Data<'a>,
    #[serde(borrow)]
    pub input: jacquard_common::CowStr<'a>,
}

pub mod authorize_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 AuthorizeOptions;
        type Input;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type AuthorizeOptions = Unset;
        type Input = Unset;
    }
    ///State transition - sets the `authorize_options` field to Set
    pub struct SetAuthorizeOptions<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetAuthorizeOptions<S> {}
    impl<S: State> State for SetAuthorizeOptions<S> {
        type AuthorizeOptions = Set<members::authorize_options>;
        type Input = S::Input;
    }
    ///State transition - sets the `input` field to Set
    pub struct SetInput<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetInput<S> {}
    impl<S: State> State for SetInput<S> {
        type AuthorizeOptions = S::AuthorizeOptions;
        type Input = Set<members::input>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `authorize_options` field
        pub struct authorize_options(());
        ///Marker type for the `input` field
        pub struct input(());
    }
}

/// Builder for constructing an instance of this type
pub struct AuthorizeBuilder<'a, S: authorize_state::State> {
    _phantom_state: ::core::marker::PhantomData<fn() -> S>,
    __unsafe_private_named: (
        ::core::option::Option<jacquard_common::types::value::Data<'a>>,
        ::core::option::Option<jacquard_common::CowStr<'a>>,
    ),
    _phantom: ::core::marker::PhantomData<&'a ()>,
}

impl<'a> Authorize<'a> {
    /// Create a new builder for this type
    pub fn new() -> AuthorizeBuilder<'a, authorize_state::Empty> {
        AuthorizeBuilder::new()
    }
}

impl<'a> AuthorizeBuilder<'a, authorize_state::Empty> {
    /// Create a new builder with all fields unset
    pub fn new() -> Self {
        AuthorizeBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: (None, None),
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> AuthorizeBuilder<'a, S>
where
    S: authorize_state::State,
    S::AuthorizeOptions: authorize_state::IsUnset,
{
    /// Set the `authorizeOptions` field (required)
    pub fn authorize_options(
        mut self,
        value: impl Into<jacquard_common::types::value::Data<'a>>,
    ) -> AuthorizeBuilder<'a, authorize_state::SetAuthorizeOptions<S>> {
        self.__unsafe_private_named.0 = ::core::option::Option::Some(value.into());
        AuthorizeBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> AuthorizeBuilder<'a, S>
where
    S: authorize_state::State,
    S::Input: authorize_state::IsUnset,
{
    /// Set the `input` field (required)
    pub fn input(
        mut self,
        value: impl Into<jacquard_common::CowStr<'a>>,
    ) -> AuthorizeBuilder<'a, authorize_state::SetInput<S>> {
        self.__unsafe_private_named.1 = ::core::option::Option::Some(value.into());
        AuthorizeBuilder {
            _phantom_state: ::core::marker::PhantomData,
            __unsafe_private_named: self.__unsafe_private_named,
            _phantom: ::core::marker::PhantomData,
        }
    }
}

impl<'a, S> AuthorizeBuilder<'a, S>
where
    S: authorize_state::State,
    S::AuthorizeOptions: authorize_state::IsSet,
    S::Input: authorize_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> Authorize<'a> {
        Authorize {
            authorize_options: self.__unsafe_private_named.0.unwrap(),
            input: self.__unsafe_private_named.1.unwrap(),
            extra_data: Default::default(),
        }
    }
    /// Build the final struct with custom extra_data
    pub fn build_with_data(
        self,
        extra_data: std::collections::BTreeMap<
            jacquard_common::deps::smol_str::SmolStr,
            jacquard_common::types::value::Data<'a>,
        >,
    ) -> Authorize<'a> {
        Authorize {
            authorize_options: self.__unsafe_private_named.0.unwrap(),
            input: self.__unsafe_private_named.1.unwrap(),
            extra_data: Some(extra_data),
        }
    }
}

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic,
    Default
)]
#[serde(rename_all = "camelCase")]
pub struct AuthorizeOutput<'a> {
    #[serde(borrow)]
    pub url: jacquard_common::CowStr<'a>,
}

/// Response type for
///app.ocho.auth.authorize
pub struct AuthorizeResponse;
impl jacquard_common::xrpc::XrpcResp for AuthorizeResponse {
    const NSID: &'static str = "app.ocho.auth.authorize";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = AuthorizeOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for Authorize<'a> {
    const NSID: &'static str = "app.ocho.auth.authorize";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = AuthorizeResponse;
}

/// Endpoint type for
///app.ocho.auth.authorize
pub struct AuthorizeRequest;
impl jacquard_common::xrpc::XrpcEndpoint for AuthorizeRequest {
    const PATH: &'static str = "/xrpc/app.ocho.auth.authorize";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = Authorize<'de>;
    type Response = AuthorizeResponse;
}