jacquard-api 0.12.0-beta.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: tools.ozone.verification.listVerifications
//
// 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::tools_ozone::verification::VerificationView;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{Datetime, Did};
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 ListVerifications<S: BosStr = DefaultStr> {
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_after: Option<Datetime>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub created_before: Option<Datetime>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cursor: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub is_revoked: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub issuers: Option<Vec<Did<S>>>,
    ///Defaults to `50`. Min: 1. Max: 100.
    #[serde(default = "_default_limit")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub limit: Option<i64>,
    ///Defaults to `"desc"`.
    #[serde(default = "_default_sort_direction")]
    #[serde(skip_serializing_if = "Option::is_none")]
    pub sort_direction: Option<S>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub subjects: Option<Vec<Did<S>>>,
}

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

/// Response type for tools.ozone.verification.listVerifications
pub struct ListVerificationsResponse;
impl jacquard_common::xrpc::XrpcResp for ListVerificationsResponse {
    const NSID: &'static str = "tools.ozone.verification.listVerifications";
    const ENCODING: &'static str = "application/json";
    type Output<S: BosStr> = ListVerificationsOutput<S>;
    type Err = jacquard_common::xrpc::GenericError;
}

impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for ListVerifications<S> {
    const NSID: &'static str = "tools.ozone.verification.listVerifications";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Response = ListVerificationsResponse;
}

/// Endpoint type for tools.ozone.verification.listVerifications
pub struct ListVerificationsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for ListVerificationsRequest {
    const PATH: &'static str = "/xrpc/tools.ozone.verification.listVerifications";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
    type Request<S: BosStr> = ListVerifications<S>;
    type Response = ListVerificationsResponse;
}

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

fn _default_sort_direction<S: jacquard_common::FromStaticStr>() -> Option<S> {
    Some(S::from_static("desc"))
}

pub mod list_verifications_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 {}
    /// 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 ListVerificationsBuilder<S: BosStr, St: list_verifications_state::State> {
    _state: PhantomData<fn() -> St>,
    _fields: (
        Option<Datetime>,
        Option<Datetime>,
        Option<S>,
        Option<bool>,
        Option<Vec<Did<S>>>,
        Option<i64>,
        Option<S>,
        Option<Vec<Did<S>>>,
    ),
    _type: PhantomData<fn() -> S>,
}

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

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

impl<S: BosStr, St: list_verifications_state::State> ListVerificationsBuilder<S, St> {
    /// Set the `createdAfter` field (optional)
    pub fn created_after(mut self, value: impl Into<Option<Datetime>>) -> Self {
        self._fields.0 = value.into();
        self
    }
    /// Set the `createdAfter` field to an Option value (optional)
    pub fn maybe_created_after(mut self, value: Option<Datetime>) -> Self {
        self._fields.0 = value;
        self
    }
}

impl<S: BosStr, St: list_verifications_state::State> ListVerificationsBuilder<S, St> {
    /// Set the `createdBefore` field (optional)
    pub fn created_before(mut self, value: impl Into<Option<Datetime>>) -> Self {
        self._fields.1 = value.into();
        self
    }
    /// Set the `createdBefore` field to an Option value (optional)
    pub fn maybe_created_before(mut self, value: Option<Datetime>) -> Self {
        self._fields.1 = value;
        self
    }
}

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

impl<S: BosStr, St: list_verifications_state::State> ListVerificationsBuilder<S, St> {
    /// Set the `isRevoked` field (optional)
    pub fn is_revoked(mut self, value: impl Into<Option<bool>>) -> Self {
        self._fields.3 = value.into();
        self
    }
    /// Set the `isRevoked` field to an Option value (optional)
    pub fn maybe_is_revoked(mut self, value: Option<bool>) -> Self {
        self._fields.3 = value;
        self
    }
}

impl<S: BosStr, St: list_verifications_state::State> ListVerificationsBuilder<S, St> {
    /// Set the `issuers` field (optional)
    pub fn issuers(mut self, value: impl Into<Option<Vec<Did<S>>>>) -> Self {
        self._fields.4 = value.into();
        self
    }
    /// Set the `issuers` field to an Option value (optional)
    pub fn maybe_issuers(mut self, value: Option<Vec<Did<S>>>) -> Self {
        self._fields.4 = value;
        self
    }
}

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

impl<S: BosStr, St: list_verifications_state::State> ListVerificationsBuilder<S, St> {
    /// Set the `sortDirection` field (optional)
    pub fn sort_direction(mut self, value: impl Into<Option<S>>) -> Self {
        self._fields.6 = value.into();
        self
    }
    /// Set the `sortDirection` field to an Option value (optional)
    pub fn maybe_sort_direction(mut self, value: Option<S>) -> Self {
        self._fields.6 = value;
        self
    }
}

impl<S: BosStr, St: list_verifications_state::State> ListVerificationsBuilder<S, St> {
    /// Set the `subjects` field (optional)
    pub fn subjects(mut self, value: impl Into<Option<Vec<Did<S>>>>) -> Self {
        self._fields.7 = value.into();
        self
    }
    /// Set the `subjects` field to an Option value (optional)
    pub fn maybe_subjects(mut self, value: Option<Vec<Did<S>>>) -> Self {
        self._fields.7 = value;
        self
    }
}

impl<S: BosStr, St> ListVerificationsBuilder<S, St>
where
    St: list_verifications_state::State,
{
    /// Build the final struct.
    pub fn build(self) -> ListVerifications<S> {
        ListVerifications {
            created_after: self._fields.0,
            created_before: self._fields.1,
            cursor: self._fields.2,
            is_revoked: self._fields.3,
            issuers: self._fields.4,
            limit: self._fields.5,
            sort_direction: self._fields.6,
            subjects: self._fields.7,
        }
    }
}