#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::AtUri;
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use serde::{Serialize, Deserialize};
use crate::place_stream::vod::CommentView;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetComments<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
pub video: AtUri<S>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetCommentsOutput<S: BosStr = DefaultStr> {
pub comments: Vec<CommentView<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
pub struct GetCommentsResponse;
impl jacquard_common::xrpc::XrpcResp for GetCommentsResponse {
const NSID: &'static str = "place.stream.vod.getComments";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetCommentsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetComments<S> {
const NSID: &'static str = "place.stream.vod.getComments";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetCommentsResponse;
}
pub struct GetCommentsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetCommentsRequest {
const PATH: &'static str = "/xrpc/place.stream.vod.getComments";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetComments<S>;
type Response = GetCommentsResponse;
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_comments_state {
pub use crate::builder_types::{Set, Unset, IsSet, IsUnset};
#[allow(unused)]
use ::core::marker::PhantomData;
mod sealed {
pub trait Sealed {}
}
pub trait State: sealed::Sealed {
type Video;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Video = Unset;
}
pub struct SetVideo<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetVideo<St> {}
impl<St: State> State for SetVideo<St> {
type Video = Set<members::video>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct video(());
}
}
pub struct GetCommentsBuilder<St: get_comments_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<i64>, Option<AtUri<S>>),
_type: PhantomData<fn() -> S>,
}
impl GetComments<DefaultStr> {
pub fn new() -> GetCommentsBuilder<get_comments_state::Empty, DefaultStr> {
GetCommentsBuilder::new()
}
}
impl<S: BosStr> GetComments<S> {
pub fn builder() -> GetCommentsBuilder<get_comments_state::Empty, S> {
GetCommentsBuilder::builder()
}
}
impl GetCommentsBuilder<get_comments_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetCommentsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetCommentsBuilder<get_comments_state::Empty, S> {
pub fn builder() -> Self {
GetCommentsBuilder {
_state: PhantomData,
_fields: (None, None, None),
_type: PhantomData,
}
}
}
impl<St: get_comments_state::State, S: BosStr> GetCommentsBuilder<St, S> {
pub fn cursor(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_cursor(mut self, value: Option<S>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: get_comments_state::State, S: BosStr> GetCommentsBuilder<St, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.1 = value;
self
}
}
impl<St, S: BosStr> GetCommentsBuilder<St, S>
where
St: get_comments_state::State,
St::Video: get_comments_state::IsUnset,
{
pub fn video(
mut self,
value: impl Into<AtUri<S>>,
) -> GetCommentsBuilder<get_comments_state::SetVideo<St>, S> {
self._fields.2 = Option::Some(value.into());
GetCommentsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GetCommentsBuilder<St, S>
where
St: get_comments_state::State,
St::Video: get_comments_state::IsSet,
{
pub fn build(self) -> GetComments<S> {
GetComments {
cursor: self._fields.0,
limit: self._fields.1,
video: self._fields.2.unwrap(),
}
}
}