#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::value::Data;
use jacquard_common::{BosStr, DefaultStr, FromStaticStr};
use jacquard_derive::IntoStatic;
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetIndexedOrganizations;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(
rename_all = "camelCase",
bound(deserialize = "S: Deserialize<'de> + BosStr")
)]
pub struct GetIndexedOrganizationsOutput<S: BosStr = DefaultStr> {
pub organizations: Vec<Data<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetIndexedOrganizationsResponse;
impl jacquard_common::xrpc::XrpcResp for GetIndexedOrganizationsResponse {
const NSID: &'static str = "app.gainforest.organization.getIndexedOrganizations";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetIndexedOrganizationsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl jacquard_common::xrpc::XrpcRequest for GetIndexedOrganizations {
const NSID: &'static str = "app.gainforest.organization.getIndexedOrganizations";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetIndexedOrganizationsResponse;
}
pub struct GetIndexedOrganizationsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetIndexedOrganizationsRequest {
const PATH: &'static str = "/xrpc/app.gainforest.organization.getIndexedOrganizations";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetIndexedOrganizations;
type Response = GetIndexedOrganizationsResponse;
}