jacquard-api 0.11.0

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.gainforest.organization.getIndexedOrganizations
//
// 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;

#[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>>,
}

/// Response type for app.gainforest.organization.getIndexedOrganizations
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;
}

/// Endpoint type for app.gainforest.organization.getIndexedOrganizations
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;
}