#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{CowStr, BosStr, DefaultStr, FromStaticStr};
#[allow(unused_imports)]
use jacquard_common::deps::codegen::unicode_segmentation::UnicodeSegmentation;
use jacquard_common::deps::smol_str::SmolStr;
use jacquard_common::types::string::{AtUri, Datetime};
use jacquard_common::types::value::Data;
use jacquard_derive::IntoStatic;
use jacquard_lexicon::lexicon::LexiconDoc;
use jacquard_lexicon::schema::LexiconSchema;
#[allow(unused_imports)]
use jacquard_lexicon::validation::{ConstraintError, ValidationPath};
use serde::{Serialize, Deserialize};
use crate::games_gamesgamesgamesgames::get_user_lists;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct ListPreviewItem<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub media: Option<Data<S>>,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub slug: Option<S>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetUserLists<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub did: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub game_uri: Option<AtUri<S>>,
#[serde(default = "_default_limit")]
#[serde(skip_serializing_if = "Option::is_none")]
pub limit: Option<i64>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct GetUserListsOutput<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub cursor: Option<S>,
pub lists: Vec<get_user_lists::UserListView<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct UserListView<S: BosStr = DefaultStr> {
pub created_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub description: Option<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub has_game: Option<bool>,
pub item_count: i64,
pub name: S,
#[serde(skip_serializing_if = "Option::is_none")]
pub preview_items: Option<Vec<get_user_lists::ListPreviewItem<S>>>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
impl<S: BosStr> LexiconSchema for ListPreviewItem<S> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.getUserLists"
}
fn def_name() -> &'static str {
"listPreviewItem"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_getUserLists()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub struct GetUserListsResponse;
impl jacquard_common::xrpc::XrpcResp for GetUserListsResponse {
const NSID: &'static str = "games.gamesgamesgamesgames.getUserLists";
const ENCODING: &'static str = "application/json";
type Output<S: BosStr> = GetUserListsOutput<S>;
type Err = jacquard_common::xrpc::GenericError;
}
impl<S: BosStr> jacquard_common::xrpc::XrpcRequest for GetUserLists<S> {
const NSID: &'static str = "games.gamesgamesgamesgames.getUserLists";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Response = GetUserListsResponse;
}
pub struct GetUserListsRequest;
impl jacquard_common::xrpc::XrpcEndpoint for GetUserListsRequest {
const PATH: &'static str = "/xrpc/games.gamesgamesgamesgames.getUserLists";
const METHOD: jacquard_common::xrpc::XrpcMethod = jacquard_common::xrpc::XrpcMethod::Query;
type Request<S: BosStr> = GetUserLists<S>;
type Response = GetUserListsResponse;
}
impl<S: BosStr> LexiconSchema for UserListView<S> {
fn nsid() -> &'static str {
"games.gamesgamesgamesgames.getUserLists"
}
fn def_name() -> &'static str {
"userListView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_games_gamesgamesgamesgames_getUserLists()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.preview_items {
#[allow(unused_comparisons)]
if value.len() > 4usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("preview_items"),
max: 4usize,
actual: value.len(),
});
}
}
Ok(())
}
}
pub mod list_preview_item_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 Name;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Name = Unset;
type Uri = Unset;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type Name = Set<members::name>;
type Uri = St::Uri;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type Name = St::Name;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct name(());
pub struct uri(());
}
}
pub struct ListPreviewItemBuilder<
St: list_preview_item_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<Data<S>>, Option<S>, Option<S>, Option<AtUri<S>>),
_type: PhantomData<fn() -> S>,
}
impl ListPreviewItem<DefaultStr> {
pub fn new() -> ListPreviewItemBuilder<list_preview_item_state::Empty, DefaultStr> {
ListPreviewItemBuilder::new()
}
}
impl<S: BosStr> ListPreviewItem<S> {
pub fn builder() -> ListPreviewItemBuilder<list_preview_item_state::Empty, S> {
ListPreviewItemBuilder::builder()
}
}
impl ListPreviewItemBuilder<list_preview_item_state::Empty, DefaultStr> {
pub fn new() -> Self {
ListPreviewItemBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> ListPreviewItemBuilder<list_preview_item_state::Empty, S> {
pub fn builder() -> Self {
ListPreviewItemBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: list_preview_item_state::State, S: BosStr> ListPreviewItemBuilder<St, S> {
pub fn media(mut self, value: impl Into<Option<Data<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_media(mut self, value: Option<Data<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<St, S: BosStr> ListPreviewItemBuilder<St, S>
where
St: list_preview_item_state::State,
St::Name: list_preview_item_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> ListPreviewItemBuilder<list_preview_item_state::SetName<St>, S> {
self._fields.1 = Option::Some(value.into());
ListPreviewItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: list_preview_item_state::State, S: BosStr> ListPreviewItemBuilder<St, S> {
pub fn slug(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_slug(mut self, value: Option<S>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> ListPreviewItemBuilder<St, S>
where
St: list_preview_item_state::State,
St::Uri: list_preview_item_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> ListPreviewItemBuilder<list_preview_item_state::SetUri<St>, S> {
self._fields.3 = Option::Some(value.into());
ListPreviewItemBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> ListPreviewItemBuilder<St, S>
where
St: list_preview_item_state::State,
St::Name: list_preview_item_state::IsSet,
St::Uri: list_preview_item_state::IsSet,
{
pub fn build(self) -> ListPreviewItem<S> {
ListPreviewItem {
media: self._fields.0,
name: self._fields.1.unwrap(),
slug: self._fields.2,
uri: self._fields.3.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> ListPreviewItem<S> {
ListPreviewItem {
media: self._fields.0,
name: self._fields.1.unwrap(),
slug: self._fields.2,
uri: self._fields.3.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_games_gamesgamesgamesgames_getUserLists() -> LexiconDoc<'static> {
#[allow(unused_imports)]
use jacquard_common::{CowStr, deps::smol_str::SmolStr, types::blob::MimeType};
use jacquard_lexicon::lexicon::*;
use alloc::collections::BTreeMap;
LexiconDoc {
lexicon: Lexicon::Lexicon1,
id: CowStr::new_static("games.gamesgamesgamesgames.getUserLists"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("listPreviewItem"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("uri"), SmolStr::new_static("name")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("media"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("slug"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("main"),
LexUserType::XrpcQuery(LexXrpcQuery {
parameters: Some(
LexXrpcQueryParameter::Params(LexXrpcParameters {
required: Some(vec![SmolStr::new_static("did")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cursor"),
LexXrpcParametersProperty::String(LexString {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static(
"The DID of the user whose lists to retrieve.",
),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("gameUri"),
LexXrpcParametersProperty::String(LexString {
description: Some(
CowStr::new_static(
"If provided, each list includes a hasGame boolean indicating whether this game is in the list.",
),
),
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("limit"),
LexXrpcParametersProperty::Integer(LexInteger {
..Default::default()
}),
);
map
},
..Default::default()
}),
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("userListView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("name"),
SmolStr::new_static("itemCount"),
SmolStr::new_static("createdAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("description"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("hasGame"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("itemCount"),
LexObjectProperty::Integer(LexInteger {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("name"),
LexObjectProperty::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("previewItems"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("#listPreviewItem"),
..Default::default()
}),
max_length: Some(4usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
fn _default_limit() -> Option<i64> {
Some(50i64)
}
pub mod get_user_lists_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 Did;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Did = Unset;
}
pub struct SetDid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetDid<St> {}
impl<St: State> State for SetDid<St> {
type Did = Set<members::did>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
}
}
pub struct GetUserListsBuilder<St: get_user_lists_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (Option<S>, Option<S>, Option<AtUri<S>>, Option<i64>),
_type: PhantomData<fn() -> S>,
}
impl GetUserLists<DefaultStr> {
pub fn new() -> GetUserListsBuilder<get_user_lists_state::Empty, DefaultStr> {
GetUserListsBuilder::new()
}
}
impl<S: BosStr> GetUserLists<S> {
pub fn builder() -> GetUserListsBuilder<get_user_lists_state::Empty, S> {
GetUserListsBuilder::builder()
}
}
impl GetUserListsBuilder<get_user_lists_state::Empty, DefaultStr> {
pub fn new() -> Self {
GetUserListsBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GetUserListsBuilder<get_user_lists_state::Empty, S> {
pub fn builder() -> Self {
GetUserListsBuilder {
_state: PhantomData,
_fields: (None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: get_user_lists_state::State, S: BosStr> GetUserListsBuilder<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, S: BosStr> GetUserListsBuilder<St, S>
where
St: get_user_lists_state::State,
St::Did: get_user_lists_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<S>,
) -> GetUserListsBuilder<get_user_lists_state::SetDid<St>, S> {
self._fields.1 = Option::Some(value.into());
GetUserListsBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: get_user_lists_state::State, S: BosStr> GetUserListsBuilder<St, S> {
pub fn game_uri(mut self, value: impl Into<Option<AtUri<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_game_uri(mut self, value: Option<AtUri<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: get_user_lists_state::State, S: BosStr> GetUserListsBuilder<St, S> {
pub fn limit(mut self, value: impl Into<Option<i64>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_limit(mut self, value: Option<i64>) -> Self {
self._fields.3 = value;
self
}
}
impl<St, S: BosStr> GetUserListsBuilder<St, S>
where
St: get_user_lists_state::State,
St::Did: get_user_lists_state::IsSet,
{
pub fn build(self) -> GetUserLists<S> {
GetUserLists {
cursor: self._fields.0,
did: self._fields.1.unwrap(),
game_uri: self._fields.2,
limit: self._fields.3,
}
}
}
pub mod user_list_view_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 CreatedAt;
type ItemCount;
type Name;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type CreatedAt = Unset;
type ItemCount = Unset;
type Name = Unset;
type Uri = Unset;
}
pub struct SetCreatedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCreatedAt<St> {}
impl<St: State> State for SetCreatedAt<St> {
type CreatedAt = Set<members::created_at>;
type ItemCount = St::ItemCount;
type Name = St::Name;
type Uri = St::Uri;
}
pub struct SetItemCount<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetItemCount<St> {}
impl<St: State> State for SetItemCount<St> {
type CreatedAt = St::CreatedAt;
type ItemCount = Set<members::item_count>;
type Name = St::Name;
type Uri = St::Uri;
}
pub struct SetName<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetName<St> {}
impl<St: State> State for SetName<St> {
type CreatedAt = St::CreatedAt;
type ItemCount = St::ItemCount;
type Name = Set<members::name>;
type Uri = St::Uri;
}
pub struct SetUri<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetUri<St> {}
impl<St: State> State for SetUri<St> {
type CreatedAt = St::CreatedAt;
type ItemCount = St::ItemCount;
type Name = St::Name;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct created_at(());
pub struct item_count(());
pub struct name(());
pub struct uri(());
}
}
pub struct UserListViewBuilder<St: user_list_view_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Datetime>,
Option<S>,
Option<bool>,
Option<i64>,
Option<S>,
Option<Vec<get_user_lists::ListPreviewItem<S>>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl UserListView<DefaultStr> {
pub fn new() -> UserListViewBuilder<user_list_view_state::Empty, DefaultStr> {
UserListViewBuilder::new()
}
}
impl<S: BosStr> UserListView<S> {
pub fn builder() -> UserListViewBuilder<user_list_view_state::Empty, S> {
UserListViewBuilder::builder()
}
}
impl UserListViewBuilder<user_list_view_state::Empty, DefaultStr> {
pub fn new() -> Self {
UserListViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> UserListViewBuilder<user_list_view_state::Empty, S> {
pub fn builder() -> Self {
UserListViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> UserListViewBuilder<St, S>
where
St: user_list_view_state::State,
St::CreatedAt: user_list_view_state::IsUnset,
{
pub fn created_at(
mut self,
value: impl Into<Datetime>,
) -> UserListViewBuilder<user_list_view_state::SetCreatedAt<St>, S> {
self._fields.0 = Option::Some(value.into());
UserListViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: user_list_view_state::State, S: BosStr> UserListViewBuilder<St, S> {
pub fn description(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_description(mut self, value: Option<S>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: user_list_view_state::State, S: BosStr> UserListViewBuilder<St, S> {
pub fn has_game(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_has_game(mut self, value: Option<bool>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> UserListViewBuilder<St, S>
where
St: user_list_view_state::State,
St::ItemCount: user_list_view_state::IsUnset,
{
pub fn item_count(
mut self,
value: impl Into<i64>,
) -> UserListViewBuilder<user_list_view_state::SetItemCount<St>, S> {
self._fields.3 = Option::Some(value.into());
UserListViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> UserListViewBuilder<St, S>
where
St: user_list_view_state::State,
St::Name: user_list_view_state::IsUnset,
{
pub fn name(
mut self,
value: impl Into<S>,
) -> UserListViewBuilder<user_list_view_state::SetName<St>, S> {
self._fields.4 = Option::Some(value.into());
UserListViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: user_list_view_state::State, S: BosStr> UserListViewBuilder<St, S> {
pub fn preview_items(
mut self,
value: impl Into<Option<Vec<get_user_lists::ListPreviewItem<S>>>>,
) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_preview_items(
mut self,
value: Option<Vec<get_user_lists::ListPreviewItem<S>>>,
) -> Self {
self._fields.5 = value;
self
}
}
impl<St, S: BosStr> UserListViewBuilder<St, S>
where
St: user_list_view_state::State,
St::Uri: user_list_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> UserListViewBuilder<user_list_view_state::SetUri<St>, S> {
self._fields.6 = Option::Some(value.into());
UserListViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> UserListViewBuilder<St, S>
where
St: user_list_view_state::State,
St::CreatedAt: user_list_view_state::IsSet,
St::ItemCount: user_list_view_state::IsSet,
St::Name: user_list_view_state::IsSet,
St::Uri: user_list_view_state::IsSet,
{
pub fn build(self) -> UserListView<S> {
UserListView {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
has_game: self._fields.2,
item_count: self._fields.3.unwrap(),
name: self._fields.4.unwrap(),
preview_items: self._fields.5,
uri: self._fields.6.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> UserListView<S> {
UserListView {
created_at: self._fields.0.unwrap(),
description: self._fields.1,
has_game: self._fields.2,
item_count: self._fields.3.unwrap(),
name: self._fields.4.unwrap(),
preview_items: self._fields.5,
uri: self._fields.6.unwrap(),
extra_data: Some(extra_data),
}
}
}