#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, lexicon};
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetIndexedOrganizations;
#[lexicon]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase")]
pub struct GetIndexedOrganizationsOutput<'a> {
#[serde(borrow)]
pub organizations: Vec<Data<'a>>,
}
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<'de> = GetIndexedOrganizationsOutput<'de>;
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
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<'de> = GetIndexedOrganizations;
type Response = GetIndexedOrganizationsResponse;
}