jacquard-api 0.12.0-beta.2

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;

use crate::network_slices::slice::get_o_auth_clients::OauthClientDetails;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::UriValue;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, CowStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};

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

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
    rename_all = "camelCase",
    bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct CreateOAuthClientOutput<S: BosStr = DefaultStr> {
    #[serde(flatten)]
    pub value: OauthClientDetails<S>,
    #[serde(flatten, default, skip_serializing_if = "Option::is_none")]
    pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}

/// 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<S: BosStr> = CreateOAuthClientOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for CreateOAuthClient<S> {
    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<S: BosStr> = CreateOAuthClient<S>;
    type Response = CreateOAuthClientResponse;
}

pub mod create_o_auth_client_state {

    pub use crate::builder_types::{IsSet, IsUnset, Set, Unset};
    #[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 RedirectUris;
        type ClientName;
    }
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {
        type SliceUri = Unset;
        type RedirectUris = Unset;
        type ClientName = Unset;
    }
    ///State transition - sets the `slice_uri` field to Set
    pub struct SetSliceUri<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetSliceUri<St> {}
    impl<St: State> State for SetSliceUri<St> {
        type SliceUri = Set<members::slice_uri>;
        type RedirectUris = St::RedirectUris;
        type ClientName = St::ClientName;
    }
    ///State transition - sets the `redirect_uris` field to Set
    pub struct SetRedirectUris<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetRedirectUris<St> {}
    impl<St: State> State for SetRedirectUris<St> {
        type SliceUri = St::SliceUri;
        type RedirectUris = Set<members::redirect_uris>;
        type ClientName = St::ClientName;
    }
    ///State transition - sets the `client_name` field to Set
    pub struct SetClientName<St: State = Empty>(PhantomData<fn() -> St>);
    impl<St: State> sealed::Sealed for SetClientName<St> {}
    impl<St: State> State for SetClientName<St> {
        type SliceUri = St::SliceUri;
        type RedirectUris = St::RedirectUris;
        type ClientName = Set<members::client_name>;
    }
    /// 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 `redirect_uris` field
        pub struct redirect_uris(());
        ///Marker type for the `client_name` field
        pub struct client_name(());
    }
}

/// Builder for constructing an instance of this type.
pub struct CreateOAuthClientBuilder<S: BosStr, St: create_o_auth_client_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (
        Option<S>,
        Option<UriValue<S>>,
        Option<Vec<S>>,
        Option<UriValue<S>>,
        Option<UriValue<S>>,
        Option<Vec<UriValue<S>>>,
        Option<Vec<S>>,
        Option<S>,
        Option<S>,
        Option<UriValue<S>>,
    ),
    _type: PhantomData<fn() -> S>,
}

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

impl<S: BosStr> CreateOAuthClientBuilder<S, 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),
            _type: PhantomData,
        }
    }
}

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

impl<S: BosStr, St: create_o_auth_client_state::State> CreateOAuthClientBuilder<S, St> {
    /// Set the `clientUri` field (optional)
    pub fn client_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> 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<S>>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<S: BosStr, St: create_o_auth_client_state::State> CreateOAuthClientBuilder<S, St> {
    /// Set the `grantTypes` field (optional)
    pub fn grant_types(mut self, value: impl Into<Option<Vec<S>>>) -> 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<S>>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<S: BosStr, St: create_o_auth_client_state::State> CreateOAuthClientBuilder<S, St> {
    /// Set the `logoUri` field (optional)
    pub fn logo_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> 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<S>>) -> Self {
        self._fields.3 = value;
        self
    }
}

impl<S: BosStr, St: create_o_auth_client_state::State> CreateOAuthClientBuilder<S, St> {
    /// Set the `policyUri` field (optional)
    pub fn policy_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> 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<S>>) -> Self {
        self._fields.4 = value;
        self
    }
}

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

impl<S: BosStr, St: create_o_auth_client_state::State> CreateOAuthClientBuilder<S, St> {
    /// Set the `responseTypes` field (optional)
    pub fn response_types(mut self, value: impl Into<Option<Vec<S>>>) -> 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<S>>) -> Self {
        self._fields.6 = value;
        self
    }
}

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

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

impl<S: BosStr, St: create_o_auth_client_state::State> CreateOAuthClientBuilder<S, St> {
    /// Set the `tosUri` field (optional)
    pub fn tos_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> 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<S>>) -> Self {
        self._fields.9 = value;
        self
    }
}

impl<S: BosStr, St> CreateOAuthClientBuilder<S, St>
where
    St: create_o_auth_client_state::State,
    St::SliceUri: create_o_auth_client_state::IsSet,
    St::RedirectUris: create_o_auth_client_state::IsSet,
    St::ClientName: create_o_auth_client_state::IsSet,
{
    /// Build the final struct.
    pub fn build(self) -> CreateOAuthClient<S> {
        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<SmolStr, Data<S>>) -> CreateOAuthClient<S> {
        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),
        }
    }
}