jacquard-api 0.12.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: tools.ozone.queue.listQueues
//
// 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, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::tools_ozone::queue::QueueView;

#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ListQueues<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub collection: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub enabled: Option<bool>,
    /// Defaults to `50`. Min: 1. Max: 100.
    #[serde(default = "_default_limit")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub report_types: Option<Vec<S>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub subject_type: Option<S>,
}


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

/** Response marker for the `tools.ozone.queue.listQueues` query.

Implements `jacquard_common::xrpc::XrpcResp`; successful bodies decode as `Self::Output<S>`, which is `ListQueuesOutput<S>` for this endpoint.*/
pub struct ListQueuesResponse;
impl jacquard_common::xrpc::XrpcResp for ListQueuesResponse {
    const NSID: &'static str = "tools.ozone.queue.listQueues";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ListQueuesOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ListQueues<S> {
    const NSID: &'static str = "tools.ozone.queue.listQueues";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = ListQueuesResponse;
}

/** Endpoint marker for the `tools.ozone.queue.listQueues` query.

Path: `/xrpc/tools.ozone.queue.listQueues`. The request payload type is `ListQueues<S>`; send that request with `jacquard::Client` or use this marker through lower-level `XrpcEndpoint` APIs.*/
pub struct ListQueuesRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ListQueuesRequest {
    const PATH: &'static str = "/xrpc/tools.ozone.queue.listQueues";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<S: BosStr> = ListQueues<S>;
    type Response = ListQueuesResponse;
}

fn _default_limit() -> Option<i64> {
    Some(50i64)
}

pub mod list_queues_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 {}
    /// Empty state - all required fields are unset
    pub struct Empty(());
    impl sealed::Sealed for Empty {}
    impl State for Empty {}
    /// Marker types for field names
    #[allow(non_camel_case_types)]
    pub mod members {}
}

/// Builder for constructing an instance of this type.
pub struct ListQueuesBuilder<St: list_queues_state::State, S: BosStr = DefaultStr> {
    _state: PhantomData<fn() -> St>,
    _fields: (
        Option<S>,
        Option<S>,
        Option<bool>,
        Option<i64>,
        Option<Vec<S>>,
        Option<S>,
    ),
    _type: PhantomData<fn() -> S>,
}

impl ListQueues<DefaultStr> {
    /// Create a new builder for this type, using the default string type (DefaultStr = SmolStr) if needed
    pub fn new() -> ListQueuesBuilder<list_queues_state::Empty, DefaultStr> {
        ListQueuesBuilder::new()
    }
}

impl<S: BosStr> ListQueues<S> {
    /// Create a new builder for this type
    pub fn builder() -> ListQueuesBuilder<list_queues_state::Empty, S> {
        ListQueuesBuilder::builder()
    }
}

impl ListQueuesBuilder<list_queues_state::Empty, DefaultStr> {
    /// Create a new builder with all fields unset, using the default string type, if needed
    pub fn new() -> Self {
        ListQueuesBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None, None, None),
            _type: PhantomData,
        }
    }
}

impl<S: BosStr> ListQueuesBuilder<list_queues_state::Empty, S> {
    /// Create a new builder with all fields unset
    pub fn builder() -> Self {
        ListQueuesBuilder {
            _state: PhantomData,
            _fields: (None, None, None, None, None, None),
            _type: PhantomData,
        }
    }
}

impl<St: list_queues_state::State, S: BosStr> ListQueuesBuilder<St, S> {
    /// Set the `collection` field (optional)
    pub fn collection(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `collection` field to an Option value (optional)
    pub fn maybe_collection(mut self, value: Option<S>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<St: list_queues_state::State, S: BosStr> ListQueuesBuilder<St, S> {
    /// Set the `cursor` field (optional)
    pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `cursor` field to an Option value (optional)
    pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
        self._fields.1 = value;
        self
    }
}

impl<St: list_queues_state::State, S: BosStr> ListQueuesBuilder<St, S> {
    /// Set the `enabled` field (optional)
    pub fn enabled(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.2 = value.into();
        self
    }
    /// Set the `enabled` field to an Option value (optional)
    pub fn maybe_enabled(mut self, value: Option<bool>) -> Self {
        self._fields.2 = value;
        self
    }
}

impl<St: list_queues_state::State, S: BosStr> ListQueuesBuilder<St, S> {
    /// Set the `limit` field (optional)
    pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `limit` field to an Option value (optional)
    pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
        self._fields.3 = value;
        self
    }
}

impl<St: list_queues_state::State, S: BosStr> ListQueuesBuilder<St, S> {
    /// Set the `reportTypes` field (optional)
    pub fn report_types(mut self, value: impl Into<Option<Vec<S>>>) -> Self {
        self._fields.4 = value.into();
        self
    }
    /// Set the `reportTypes` field to an Option value (optional)
    pub fn maybe_report_types(mut self, value: Option<Vec<S>>) -> Self {
        self._fields.4 = value;
        self
    }
}

impl<St: list_queues_state::State, S: BosStr> ListQueuesBuilder<St, S> {
    /// Set the `subjectType` field (optional)
    pub fn subject_type(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.5 = value.into();
        self
    }
    /// Set the `subjectType` field to an Option value (optional)
    pub fn maybe_subject_type(mut self, value: Option<S>) -> Self {
        self._fields.5 = value;
        self
    }
}

impl<St, S: BosStr> ListQueuesBuilder<St, S>
where
    St: list_queues_state::State,
{
    /// Build the final struct.
    pub fn build(self) -> ListQueues<S> {
        ListQueues {
            collection: self._fields.0,
            cursor: self._fields.1,
            enabled: self._fields.2,
            limit: self._fields.3,
            report_types: self._fields.4,
            subject_type: self._fields.5,
        }
    }
}