#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Copy)]
pub struct Previous;
pub struct PreviousResponse;
impl jacquard_common::xrpc::XrpcResp for PreviousResponse {
const NSID: &'static str = "app.rocksky.spotify.previous";
const ENCODING: &'static str = "application/json";
type Output<'de> = ();
type Err<'de> = jacquard_common::xrpc::GenericError<'de>;
}
impl jacquard_common::xrpc::XrpcRequest for Previous {
const NSID: &'static str = "app.rocksky.spotify.previous";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Response = PreviousResponse;
}
pub struct PreviousRequest;
impl jacquard_common::xrpc::XrpcEndpoint for PreviousRequest {
const PATH: &'static str = "/xrpc/app.rocksky.spotify.previous";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Procedure(
"application/json",
);
type Request<'de> = Previous;
type Response = PreviousResponse;
}