#[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> {
pub client_name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub client_uri: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub grant_types: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub logo_uri: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub policy_uri: Option<UriValue<S>>,
pub redirect_uris: Vec<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub response_types: Option<Vec<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub scope: Option<S>,
pub slice_uri: S,
#[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>>>,
}
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;
}
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 {}
}
pub trait State: sealed::Sealed {
type SliceUri;
type RedirectUris;
type ClientName;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type SliceUri = Unset;
type RedirectUris = Unset;
type ClientName = Unset;
}
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;
}
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;
}
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>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct slice_uri(());
pub struct redirect_uris(());
pub struct client_name(());
}
}
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> {
pub fn new() -> CreateOAuthClientBuilder<S, create_o_auth_client_state::Empty> {
CreateOAuthClientBuilder::new()
}
}
impl<S: BosStr> CreateOAuthClientBuilder<S, create_o_auth_client_state::Empty> {
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,
{
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> {
pub fn client_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.1 = value.into();
self
}
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> {
pub fn grant_types(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.2 = value.into();
self
}
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> {
pub fn logo_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.3 = value.into();
self
}
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> {
pub fn policy_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.4 = value.into();
self
}
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,
{
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> {
pub fn response_types(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
self._fields.6 = value.into();
self
}
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> {
pub fn scope(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.7 = value.into();
self
}
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,
{
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> {
pub fn tos_uri(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.9 = value.into();
self
}
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,
{
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(),
}
}
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),
}
}
}