pub mod declaration;
pub mod delete_account;
pub mod export_account_data;
pub mod get_status;
#[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::{Did, Handle, Datetime, UriValue};
use jacquard_common::types::value::Data;
use jacquard_derive::{IntoStatic, open_union};
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::app_bsky::actor::ProfileAssociated;
use crate::app_bsky::actor::VerificationState;
use crate::app_bsky::actor::ViewerState;
use crate::com_atproto::label::Label;
use crate::chat_bsky::actor;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct DirectConvoMember<S: BosStr = DefaultStr> {
#[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 GroupConvoMember<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub added_by: Option<actor::ProfileViewBasic<S>>,
pub role: actor::MemberRole<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
pub enum MemberRole<S: BosStr = DefaultStr> {
Owner,
Standard,
Other(S),
}
impl<S: BosStr> MemberRole<S> {
pub fn as_str(&self) -> &str {
match self {
Self::Owner => "owner",
Self::Standard => "standard",
Self::Other(s) => s.as_ref(),
}
}
pub fn from_value(s: S) -> Self {
match s.as_ref() {
"owner" => Self::Owner,
"standard" => Self::Standard,
_ => Self::Other(s),
}
}
}
impl<S: BosStr> AsRef<str> for MemberRole<S> {
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl<S: BosStr> core::fmt::Display for MemberRole<S> {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl<S: BosStr> Serialize for MemberRole<S> {
fn serialize<Ser>(&self, serializer: Ser) -> Result<Ser::Ok, Ser::Error>
where
Ser: serde::Serializer,
{
serializer.serialize_str(self.as_str())
}
}
impl<'de, S: Deserialize<'de> + BosStr> Deserialize<'de> for MemberRole<S> {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: serde::Deserializer<'de>,
{
let s = S::deserialize(deserializer)?;
Ok(Self::from_value(s))
}
}
impl<S: BosStr> jacquard_common::IntoStatic for MemberRole<S>
where
S: BosStr + jacquard_common::IntoStatic,
S::Output: BosStr,
{
type Output = MemberRole<S::Output>;
fn into_static(self) -> Self::Output {
match self {
MemberRole::Owner => MemberRole::Owner,
MemberRole::Standard => MemberRole::Standard,
MemberRole::Other(v) => MemberRole::Other(v.into_static()),
}
}
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic, Default)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct PastGroupConvoMember<S: BosStr = DefaultStr> {
#[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 ProfileViewBasic<S: BosStr = DefaultStr> {
#[serde(skip_serializing_if = "Option::is_none")]
pub associated: Option<ProfileAssociated<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub avatar: Option<UriValue<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub chat_disabled: Option<bool>,
#[serde(skip_serializing_if = "Option::is_none")]
pub created_at: Option<Datetime>,
pub did: Did<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub display_name: Option<S>,
pub handle: Handle<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub kind: Option<ProfileViewBasicKind<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub labels: Option<Vec<Label<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub verification: Option<VerificationState<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub viewer: Option<ViewerState<S>>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum ProfileViewBasicKind<S: BosStr = DefaultStr> {
#[serde(rename = "chat.bsky.actor.defs#directConvoMember")]
DirectConvoMember(Box<actor::DirectConvoMember<S>>),
#[serde(rename = "chat.bsky.actor.defs#groupConvoMember")]
GroupConvoMember(Box<actor::GroupConvoMember<S>>),
#[serde(rename = "chat.bsky.actor.defs#pastGroupConvoMember")]
PastGroupConvoMember(Box<actor::PastGroupConvoMember<S>>),
}
impl<S: BosStr> LexiconSchema for DirectConvoMember<S> {
fn nsid() -> &'static str {
"chat.bsky.actor.defs"
}
fn def_name() -> &'static str {
"directConvoMember"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_chat_bsky_actor_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for GroupConvoMember<S> {
fn nsid() -> &'static str {
"chat.bsky.actor.defs"
}
fn def_name() -> &'static str {
"groupConvoMember"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_chat_bsky_actor_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for PastGroupConvoMember<S> {
fn nsid() -> &'static str {
"chat.bsky.actor.defs"
}
fn def_name() -> &'static str {
"pastGroupConvoMember"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_chat_bsky_actor_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
impl<S: BosStr> LexiconSchema for ProfileViewBasic<S> {
fn nsid() -> &'static str {
"chat.bsky.actor.defs"
}
fn def_name() -> &'static str {
"profileViewBasic"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_chat_bsky_actor_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.display_name {
#[allow(unused_comparisons)]
if <str>::len(value.as_ref()) > 640usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("display_name"),
max: 640usize,
actual: <str>::len(value.as_ref()),
});
}
}
if let Some(ref value) = self.display_name {
{
let count = UnicodeSegmentation::graphemes(value.as_ref(), true).count();
if count > 64usize {
return Err(ConstraintError::MaxGraphemes {
path: ValidationPath::from_field("display_name"),
max: 64usize,
actual: count,
});
}
}
}
Ok(())
}
}
fn lexicon_doc_chat_bsky_actor_defs() -> 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("chat.bsky.actor.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("directConvoMember"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"[NOTE: This is under active development and should be considered unstable while this note is here].",
),
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("groupConvoMember"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"[NOTE: This is under active development and should be considered unstable while this note is here]. A current group convo member.",
),
),
required: Some(vec![SmolStr::new_static("role")]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("addedBy"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#profileViewBasic"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("role"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#memberRole"),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("memberRole"),
LexUserType::String(LexString { ..Default::default() }),
);
map.insert(
SmolStr::new_static("pastGroupConvoMember"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"[NOTE: This is under active development and should be considered unstable while this note is here]. A past group convo member.",
),
),
required: Some(vec![]),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map
},
..Default::default()
}),
);
map.insert(
SmolStr::new_static("profileViewBasic"),
LexUserType::Object(LexObject {
required: Some(
vec![SmolStr::new_static("did"), SmolStr::new_static("handle")],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("associated"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"app.bsky.actor.defs#profileAssociated",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("avatar"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Uri),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("chatDisabled"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("createdAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("did"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Did),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("displayName"),
LexObjectProperty::String(LexString {
max_length: Some(640usize),
max_graphemes: Some(64usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("handle"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Handle),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("kind"),
LexObjectProperty::Union(LexRefUnion {
description: Some(
CowStr::new_static(
"Union field that has data specific to different kinds of convos.",
),
),
refs: vec![
CowStr::new_static("#directConvoMember"),
CowStr::new_static("#groupConvoMember"),
CowStr::new_static("#pastGroupConvoMember")
],
..Default::default()
}),
);
map.insert(
SmolStr::new_static("labels"),
LexObjectProperty::Array(LexArray {
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static("com.atproto.label.defs#label"),
..Default::default()
}),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("verification"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"app.bsky.actor.defs#verificationState",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("viewer"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"app.bsky.actor.defs#viewerState",
),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod group_convo_member_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 Role;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Role = Unset;
}
pub struct SetRole<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRole<St> {}
impl<St: State> State for SetRole<St> {
type Role = Set<members::role>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct role(());
}
}
pub struct GroupConvoMemberBuilder<
St: group_convo_member_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (Option<actor::ProfileViewBasic<S>>, Option<actor::MemberRole<S>>),
_type: PhantomData<fn() -> S>,
}
impl GroupConvoMember<DefaultStr> {
pub fn new() -> GroupConvoMemberBuilder<
group_convo_member_state::Empty,
DefaultStr,
> {
GroupConvoMemberBuilder::new()
}
}
impl<S: BosStr> GroupConvoMember<S> {
pub fn builder() -> GroupConvoMemberBuilder<group_convo_member_state::Empty, S> {
GroupConvoMemberBuilder::builder()
}
}
impl GroupConvoMemberBuilder<group_convo_member_state::Empty, DefaultStr> {
pub fn new() -> Self {
GroupConvoMemberBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> GroupConvoMemberBuilder<group_convo_member_state::Empty, S> {
pub fn builder() -> Self {
GroupConvoMemberBuilder {
_state: PhantomData,
_fields: (None, None),
_type: PhantomData,
}
}
}
impl<St: group_convo_member_state::State, S: BosStr> GroupConvoMemberBuilder<St, S> {
pub fn added_by(
mut self,
value: impl Into<Option<actor::ProfileViewBasic<S>>>,
) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_added_by(mut self, value: Option<actor::ProfileViewBasic<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<St, S: BosStr> GroupConvoMemberBuilder<St, S>
where
St: group_convo_member_state::State,
St::Role: group_convo_member_state::IsUnset,
{
pub fn role(
mut self,
value: impl Into<actor::MemberRole<S>>,
) -> GroupConvoMemberBuilder<group_convo_member_state::SetRole<St>, S> {
self._fields.1 = Option::Some(value.into());
GroupConvoMemberBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> GroupConvoMemberBuilder<St, S>
where
St: group_convo_member_state::State,
St::Role: group_convo_member_state::IsSet,
{
pub fn build(self) -> GroupConvoMember<S> {
GroupConvoMember {
added_by: self._fields.0,
role: self._fields.1.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> GroupConvoMember<S> {
GroupConvoMember {
added_by: self._fields.0,
role: self._fields.1.unwrap(),
extra_data: Some(extra_data),
}
}
}
pub mod profile_view_basic_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;
type Handle;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Did = Unset;
type Handle = 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>;
type Handle = St::Handle;
}
pub struct SetHandle<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetHandle<St> {}
impl<St: State> State for SetHandle<St> {
type Did = St::Did;
type Handle = Set<members::handle>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct did(());
pub struct handle(());
}
}
pub struct ProfileViewBasicBuilder<
St: profile_view_basic_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ProfileAssociated<S>>,
Option<UriValue<S>>,
Option<bool>,
Option<Datetime>,
Option<Did<S>>,
Option<S>,
Option<Handle<S>>,
Option<ProfileViewBasicKind<S>>,
Option<Vec<Label<S>>>,
Option<VerificationState<S>>,
Option<ViewerState<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl ProfileViewBasic<DefaultStr> {
pub fn new() -> ProfileViewBasicBuilder<
profile_view_basic_state::Empty,
DefaultStr,
> {
ProfileViewBasicBuilder::new()
}
}
impl<S: BosStr> ProfileViewBasic<S> {
pub fn builder() -> ProfileViewBasicBuilder<profile_view_basic_state::Empty, S> {
ProfileViewBasicBuilder::builder()
}
}
impl ProfileViewBasicBuilder<profile_view_basic_state::Empty, DefaultStr> {
pub fn new() -> Self {
ProfileViewBasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> ProfileViewBasicBuilder<profile_view_basic_state::Empty, S> {
pub fn builder() -> Self {
ProfileViewBasicBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn associated(mut self, value: impl Into<Option<ProfileAssociated<S>>>) -> Self {
self._fields.0 = value.into();
self
}
pub fn maybe_associated(mut self, value: Option<ProfileAssociated<S>>) -> Self {
self._fields.0 = value;
self
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn avatar(mut self, value: impl Into<Option<UriValue<S>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_avatar(mut self, value: Option<UriValue<S>>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn chat_disabled(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_chat_disabled(mut self, value: Option<bool>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn created_at(mut self, value: impl Into<Option<Datetime>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_created_at(mut self, value: Option<Datetime>) -> Self {
self._fields.3 = value;
self
}
}
impl<St, S: BosStr> ProfileViewBasicBuilder<St, S>
where
St: profile_view_basic_state::State,
St::Did: profile_view_basic_state::IsUnset,
{
pub fn did(
mut self,
value: impl Into<Did<S>>,
) -> ProfileViewBasicBuilder<profile_view_basic_state::SetDid<St>, S> {
self._fields.4 = Option::Some(value.into());
ProfileViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn display_name(mut self, value: impl Into<Option<S>>) -> Self {
self._fields.5 = value.into();
self
}
pub fn maybe_display_name(mut self, value: Option<S>) -> Self {
self._fields.5 = value;
self
}
}
impl<St, S: BosStr> ProfileViewBasicBuilder<St, S>
where
St: profile_view_basic_state::State,
St::Handle: profile_view_basic_state::IsUnset,
{
pub fn handle(
mut self,
value: impl Into<Handle<S>>,
) -> ProfileViewBasicBuilder<profile_view_basic_state::SetHandle<St>, S> {
self._fields.6 = Option::Some(value.into());
ProfileViewBasicBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn kind(mut self, value: impl Into<Option<ProfileViewBasicKind<S>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_kind(mut self, value: Option<ProfileViewBasicKind<S>>) -> Self {
self._fields.7 = value;
self
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn labels(mut self, value: impl Into<Option<Vec<Label<S>>>>) -> Self {
self._fields.8 = value.into();
self
}
pub fn maybe_labels(mut self, value: Option<Vec<Label<S>>>) -> Self {
self._fields.8 = value;
self
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn verification(
mut self,
value: impl Into<Option<VerificationState<S>>>,
) -> Self {
self._fields.9 = value.into();
self
}
pub fn maybe_verification(mut self, value: Option<VerificationState<S>>) -> Self {
self._fields.9 = value;
self
}
}
impl<St: profile_view_basic_state::State, S: BosStr> ProfileViewBasicBuilder<St, S> {
pub fn viewer(mut self, value: impl Into<Option<ViewerState<S>>>) -> Self {
self._fields.10 = value.into();
self
}
pub fn maybe_viewer(mut self, value: Option<ViewerState<S>>) -> Self {
self._fields.10 = value;
self
}
}
impl<St, S: BosStr> ProfileViewBasicBuilder<St, S>
where
St: profile_view_basic_state::State,
St::Did: profile_view_basic_state::IsSet,
St::Handle: profile_view_basic_state::IsSet,
{
pub fn build(self) -> ProfileViewBasic<S> {
ProfileViewBasic {
associated: self._fields.0,
avatar: self._fields.1,
chat_disabled: self._fields.2,
created_at: self._fields.3,
did: self._fields.4.unwrap(),
display_name: self._fields.5,
handle: self._fields.6.unwrap(),
kind: self._fields.7,
labels: self._fields.8,
verification: self._fields.9,
viewer: self._fields.10,
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> ProfileViewBasic<S> {
ProfileViewBasic {
associated: self._fields.0,
avatar: self._fields.1,
chat_disabled: self._fields.2,
created_at: self._fields.3,
did: self._fields.4.unwrap(),
display_name: self._fields.5,
handle: self._fields.6.unwrap(),
kind: self._fields.7,
labels: self._fields.8,
verification: self._fields.9,
viewer: self._fields.10,
extra_data: Some(extra_data),
}
}
}