pub const NSID: &str = "tools.ozone.signature.searchAccounts";
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct ParametersData {
#[serde(skip_serializing_if = "core::option::Option::is_none")]
pub cursor: core::option::Option<String>,
#[serde(skip_serializing_if = "core::option::Option::is_none")]
pub limit: core::option::Option<crate::types::LimitedNonZeroU8<100u8>>,
pub values: Vec<String>,
}
pub type Parameters = crate::types::Object<ParametersData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(rename_all = "camelCase")]
pub struct OutputData {
pub accounts: Vec<crate::com::atproto::admin::defs::AccountView>,
#[serde(skip_serializing_if = "core::option::Option::is_none")]
pub cursor: core::option::Option<String>,
}
pub type Output = crate::types::Object<OutputData>;
#[derive(serde::Serialize, serde::Deserialize, Debug, Clone, PartialEq, Eq)]
#[serde(tag = "error", content = "message")]
pub enum Error {}
impl std::fmt::Display for Error {
fn fmt(&self, _f: &mut std::fmt::Formatter) -> std::fmt::Result {
Ok(())
}
}