jacquard-api 0.10.2

Generated AT Protocol API bindings for Jacquard
Documentation
// @generated by jacquard-lexicon. DO NOT EDIT.
//
// Lexicon: app.ocho.plugin.putHostingUrl
//
// This file was automatically generated from Lexicon schemas.
// Any manual changes will be overwritten on the next regeneration.

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic,
    Default
)]
#[serde(rename_all = "camelCase")]
pub struct PutHostingUrl<'a> {
    ///The expo push token
    #[serde(borrow)]
    pub url: jacquard_common::CowStr<'a>,
}

#[jacquard_derive::lexicon]
#[derive(
    serde::Serialize,
    serde::Deserialize,
    Debug,
    Clone,
    PartialEq,
    Eq,
    jacquard_derive::IntoStatic
)]
#[serde(rename_all = "camelCase")]
pub struct PutHostingUrlOutput<'a> {
    pub success: bool,
}

/// Response type for
///app.ocho.plugin.putHostingUrl
pub struct PutHostingUrlResponse;
impl jacquard_common::xrpc::XrpcResp for PutHostingUrlResponse {
    const NSID: &'static str = "app.ocho.plugin.putHostingUrl";
    const ENCODING: &'static str = "application/json";
    type Output<'de> = PutHostingUrlOutput<'de>;
    type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}

impl<'a> jacquard_common::xrpc::XrpcRequest for PutHostingUrl<'a> {
    const NSID: &'static str = "app.ocho.plugin.putHostingUrl";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Response = PutHostingUrlResponse;
}

/// Endpoint type for
///app.ocho.plugin.putHostingUrl
pub struct PutHostingUrlRequest;
impl jacquard_common::xrpc::XrpcEndpoint for PutHostingUrlRequest {
    const PATH: &'static str = "/xrpc/app.ocho.plugin.putHostingUrl";
    const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
        "application/json",
    );
    type Request<'de> = PutHostingUrl<'de>;
    type Response = PutHostingUrlResponse;
}