#[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::string::Did;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::tools_ozone::report::AssignmentView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetAssignments<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub dids: Option<Vec<Did<S>>>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
#[serde(default = "_default_only_active")]
#[serde(skip_serializing_if = "Option::is_none")]
pub only_active: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub report_ids: Option<Vec<i64>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetAssignmentsOutput<S: BosStr = DefaultStr> {
pub assignments: Vec<AssignmentView<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetAssignmentsResponse;
impl jacquard_common::xrpc::XrpcResp for GetAssignmentsResponse {
const NSID: &'static str = "tools.ozone.report.getAssignments";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetAssignmentsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetAssignments<S> {
const NSID: &'static str = "tools.ozone.report.getAssignments";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetAssignmentsResponse;
}
pub struct GetAssignmentsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetAssignmentsRequest {
const PATH: &'static str = "/xrpc/tools.ozone.report.getAssignments";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetAssignments<S>;
type Response = GetAssignmentsResponse;
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
fn _default_only_active() -> Option<bool> {
Some(true)
}
pub mod get_assignments_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {}
#[allow(non_camel_case_types)]
pub mod members {}
}
pub struct GetAssignmentsBuilder<
St: get_assignments_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<S>,
Option<Vec<Did<S>>>,
Option<i64>,
Option<bool>,
Option<Vec<i64>>,
),
_type: PhantomData<fn() -> S>,
}
impl GetAssignments<DefaultStr> {
pub fn new() -> GetAssignmentsBuilder<get_assignments_state::Empty, DefaultStr> {
GetAssignmentsBuilder::new()
}
}
impl<S: BosStr> GetAssignments<S> {
pub fn builder() -> GetAssignmentsBuilder<get_assignments_state::Empty, S> {
GetAssignmentsBuilder::builder()
}
}
impl GetAssignmentsBuilder<get_assignments_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetAssignmentsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetAssignmentsBuilder<get_assignments_state::Empty, S> {
pub fn builder() -> Self {
GetAssignmentsBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: get_assignments_state::State, S: BosStr> GetAssignmentsBuilder<St, S> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: get_assignments_state::State, S: BosStr> GetAssignmentsBuilder<St, S> {
pub fn dids(mut self, value: impl Into<Option<Vec<Did<S>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_dids(mut self, value: Option<Vec<Did<S>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: get_assignments_state::State, S: BosStr> GetAssignmentsBuilder<St, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: get_assignments_state::State, S: BosStr> GetAssignmentsBuilder<St, S> {
pub fn only_active(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_only_active(mut self, value: Option<bool>) -> Self {
self._fields.3 = value;
self
}
}
impl<St: get_assignments_state::State, S: BosStr> GetAssignmentsBuilder<St, S> {
pub fn report_ids(mut self, value: impl Into<Option<Vec<i64>>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_report_ids(mut self, value: Option<Vec<i64>>) -> Self {
self._fields.4 = value;
self
}
}
impl<St, S: BosStr> GetAssignmentsBuilder<St, S>
where
St: get_assignments_state::State,
{
pub fn build(self) -> GetAssignments<S> {
GetAssignments {
cursor: self._fields.0,
dids: self._fields.1,
limit: self._fields.2,
only_active: self._fields.3,
report_ids: self._fields.4,
}
}
}