jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: network.slices.slice.createOAuthClient
//
// 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::CowStr;
use jacquard_common::types::string::UriValue;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
use crate::network_slices::slice::get_o_auth_clients::OauthClientDetails;

#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateOAuthClient<'a> {
    ///Human-readable name of the OAuth client
    #[serde(borrow)]
    pub client_name: CowStr<'a>,
    ///URI of the client application
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub client_uri: Option<UriValue<'a>>,
    ///OAuth grant types
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub grant_types: Option<Vec<CowStr<'a>>>,
    ///URI of the client logo
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub logo_uri: Option<UriValue<'a>>,
    ///URI of the privacy policy
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub policy_uri: Option<UriValue<'a>>,
    ///Allowed redirect URIs for OAuth flow (must use HTTP or HTTPS)
    #[serde(borrow)]
    pub redirect_uris: Vec<UriValue<'a>>,
    ///OAuth response types
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub response_types: Option<Vec<CowStr<'a>>>,
    ///OAuth scope
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub scope: Option<CowStr<'a>>,
    ///AT-URI of the slice to register the OAuth client for
    #[serde(borrow)]
    pub slice_uri: CowStr<'a>,
    ///URI of the terms of service
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(borrow)]
    pub tos_uri: Option<UriValue<'a>>,
}


#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct CreateOAuthClientOutput<'a> {
    #[serde(flatten)]
    #[serde(borrow)]
    pub value: OauthClientDetails<'a>,
}

/// Response type for network.slices.slice.createOAuthClient
pub struct CreateOAuthClientResponse;
impl jacquard_common::xrpc::XrpcResp for CreateOAuthClientResponse {
    const NSID: &'static str = "network.slices.slice.createOAuthClient";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = CreateOAuthClientOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for CreateOAuthClient<'a> {
    const NSID: &'static str = "network.slices.slice.createOAuthClient";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = CreateOAuthClientResponse;
}

/// Endpoint type for network.slices.slice.createOAuthClient
pub struct CreateOAuthClientRequest;
impl jacquard_common::xrpc::XrpcEndpoint for CreateOAuthClientRequest {
    const PATH: &'static str = "/xrpc/network.slices.slice.createOAuthClient";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = CreateOAuthClient<'de>;
    type Response = CreateOAuthClientResponse;
}

pub mod create_o_auth_client_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 SliceUri;
        type ClientName;
        type RedirectUris;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type SliceUri = Unset;
        type ClientName = Unset;
        type RedirectUris = Unset;
    }
    ///State transition - sets the `slice_uri` field to Set
    pub struct SetSliceUri<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetSliceUri<S> {}
    impl<S: State> State for SetSliceUri<S> {
        type SliceUri = Set<members::slice_uri>;
        type ClientName = S::ClientName;
        type RedirectUris = S::RedirectUris;
    }
    ///State transition - sets the `client_name` field to Set
    pub struct SetClientName<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetClientName<S> {}
    impl<S: State> State for SetClientName<S> {
        type SliceUri = S::SliceUri;
        type ClientName = Set<members::client_name>;
        type RedirectUris = S::RedirectUris;
    }
    ///State transition - sets the `redirect_uris` field to Set
    pub struct SetRedirectUris<S: State = Empty>(PhantomData<fn() -> S>);
    impl<S: State> sealed::Sealed for SetRedirectUris<S> {}
    impl<S: State> State for SetRedirectUris<S> {
        type SliceUri = S::SliceUri;
        type ClientName = S::ClientName;
        type RedirectUris = Set<members::redirect_uris>;
    }
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {
        ///Marker type for the `slice_uri` field
        pub struct slice_uri(());
        ///Marker type for the `client_name` field
        pub struct client_name(());
        ///Marker type for the `redirect_uris` field
        pub struct redirect_uris(());
    }
}

/// Builder for constructing an instance of this type
pub struct CreateOAuthClientBuilder<'a, S: create_o_auth_client_state::State> {
    _state: PhantomData<fn() -> S>,
    _fields: (
        Option<CowStr<'a>>,
        Option<UriValue<'a>>,
        Option<Vec<CowStr<'a>>>,
        Option<UriValue<'a>>,
        Option<UriValue<'a>>,
        Option<Vec<UriValue<'a>>>,
        Option<Vec<CowStr<'a>>>,
        Option<CowStr<'a>>,
        Option<CowStr<'a>>,
        Option<UriValue<'a>>,
    ),
    _lifetime: PhantomData<&'a ()>,
}

impl<'a> CreateOAuthClient<'a> {
    /// Create a new builder for this type
    pub fn new() -> CreateOAuthClientBuilder<'a, create_o_auth_client_state::Empty> {
        CreateOAuthClientBuilder::new()
    }
}

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

impl<'a, S> CreateOAuthClientBuilder<'a, S>
where
    S: create_o_auth_client_state::State,
    S::ClientName: create_o_auth_client_state::IsUnset,
{
    /// Set the `clientName` field (required)
    pub fn client_name(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> CreateOAuthClientBuilder<'a, create_o_auth_client_state::SetClientName<S>> {
        self._fields.0 = Option::Some(value.into());
        CreateOAuthClientBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: create_o_auth_client_state::State> CreateOAuthClientBuilder<'a, S> {
    /// Set the `clientUri` field (optional)
    pub fn client_uri(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `clientUri` field to an Option value (optional)
    pub fn maybe_client_uri(mut self, value: Option<UriValue<'a>>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<'a, S: create_o_auth_client_state::State> CreateOAuthClientBuilder<'a, S> {
    /// Set the `grantTypes` field (optional)
    pub fn grant_types(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `grantTypes` field to an Option value (optional)
    pub fn maybe_grant_types(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<'a, S: create_o_auth_client_state::State> CreateOAuthClientBuilder<'a, S> {
    /// Set the `logoUri` field (optional)
    pub fn logo_uri(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `logoUri` field to an Option value (optional)
    pub fn maybe_logo_uri(mut self, value: Option<UriValue<'a>>) -> Self {
        self._fields.3 = value;
        self
    }
}

impl<'a, S: create_o_auth_client_state::State> CreateOAuthClientBuilder<'a, S> {
    /// Set the `policyUri` field (optional)
    pub fn policy_uri(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
        self._fields.4 = value.into();
        self
    }
    /// Set the `policyUri` field to an Option value (optional)
    pub fn maybe_policy_uri(mut self, value: Option<UriValue<'a>>) -> Self {
        self._fields.4 = value;
        self
    }
}

impl<'a, S> CreateOAuthClientBuilder<'a, S>
where
    S: create_o_auth_client_state::State,
    S::RedirectUris: create_o_auth_client_state::IsUnset,
{
    /// Set the `redirectUris` field (required)
    pub fn redirect_uris(
        mut self,
        value: impl Into<Vec<UriValue<'a>>>,
    ) -> CreateOAuthClientBuilder<'a, create_o_auth_client_state::SetRedirectUris<S>> {
        self._fields.5 = Option::Some(value.into());
        CreateOAuthClientBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: create_o_auth_client_state::State> CreateOAuthClientBuilder<'a, S> {
    /// Set the `responseTypes` field (optional)
    pub fn response_types(mut self, value: impl Into<Option<Vec<CowStr<'a>>>>) -> Self {
        self._fields.6 = value.into();
        self
    }
    /// Set the `responseTypes` field to an Option value (optional)
    pub fn maybe_response_types(mut self, value: Option<Vec<CowStr<'a>>>) -> Self {
        self._fields.6 = value;
        self
    }
}

impl<'a, S: create_o_auth_client_state::State> CreateOAuthClientBuilder<'a, S> {
    /// Set the `scope` field (optional)
    pub fn scope(mut self, value: impl Into<Option<CowStr<'a>>>) -> Self {
        self._fields.7 = value.into();
        self
    }
    /// Set the `scope` field to an Option value (optional)
    pub fn maybe_scope(mut self, value: Option<CowStr<'a>>) -> Self {
        self._fields.7 = value;
        self
    }
}

impl<'a, S> CreateOAuthClientBuilder<'a, S>
where
    S: create_o_auth_client_state::State,
    S::SliceUri: create_o_auth_client_state::IsUnset,
{
    /// Set the `sliceUri` field (required)
    pub fn slice_uri(
        mut self,
        value: impl Into<CowStr<'a>>,
    ) -> CreateOAuthClientBuilder<'a, create_o_auth_client_state::SetSliceUri<S>> {
        self._fields.8 = Option::Some(value.into());
        CreateOAuthClientBuilder {
            _state: PhantomData,
            _fields: self._fields,
            _lifetime: PhantomData,
        }
    }
}

impl<'a, S: create_o_auth_client_state::State> CreateOAuthClientBuilder<'a, S> {
    /// Set the `tosUri` field (optional)
    pub fn tos_uri(mut self, value: impl Into<Option<UriValue<'a>>>) -> Self {
        self._fields.9 = value.into();
        self
    }
    /// Set the `tosUri` field to an Option value (optional)
    pub fn maybe_tos_uri(mut self, value: Option<UriValue<'a>>) -> Self {
        self._fields.9 = value;
        self
    }
}

impl<'a, S> CreateOAuthClientBuilder<'a, S>
where
    S: create_o_auth_client_state::State,
    S::SliceUri: create_o_auth_client_state::IsSet,
    S::ClientName: create_o_auth_client_state::IsSet,
    S::RedirectUris: create_o_auth_client_state::IsSet,
{
    /// Build the final struct
    pub fn build(self) -> CreateOAuthClient<'a> {
        CreateOAuthClient {
            client_name: self._fields.0.unwrap(),
            client_uri: self._fields.1,
            grant_types: self._fields.2,
            logo_uri: self._fields.3,
            policy_uri: self._fields.4,
            redirect_uris: self._fields.5.unwrap(),
            response_types: self._fields.6,
            scope: self._fields.7,
            slice_uri: self._fields.8.unwrap(),
            tos_uri: self._fields.9,
            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>,
        >,
    ) -> CreateOAuthClient<'a> {
        CreateOAuthClient {
            client_name: self._fields.0.unwrap(),
            client_uri: self._fields.1,
            grant_types: self._fields.2,
            logo_uri: self._fields.3,
            policy_uri: self._fields.4,
            redirect_uris: self._fields.5.unwrap(),
            response_types: self._fields.6,
            scope: self._fields.7,
            slice_uri: self._fields.8.unwrap(),
            tos_uri: self._fields.9,
            extra_data: Some(extra_data),
        }
    }
}