pub mod gate;
pub mod message;
pub mod pinned_record;
pub mod profile;
#[allow(unused_imports)]
use alloc::collections::BTreeMap;
#[allow(unused_imports)]
use core::marker::PhantomData;
use jacquard_common::{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, Cid, 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::app_bsky::actor::ProfileViewBasic;
use crate::place_stream::badge::BadgeView;
use crate::place_stream::chat::pinned_record::PinnedRecord;
use crate::place_stream::chat::profile::Profile;
use crate::place_stream::chat;
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct MessageView<S: BosStr = DefaultStr> {
pub author: ProfileViewBasic<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub badges: Option<Vec<BadgeView<S>>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub chat_profile: Option<Profile<S>>,
pub cid: Cid<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub deleted: Option<bool>,
pub indexed_at: Datetime,
pub record: Data<S>,
#[serde(skip_serializing_if = "Option::is_none")]
pub reply_to: Option<MessageViewReplyTo<S>>,
pub uri: AtUri<S>,
#[serde(flatten, default, skip_serializing_if = "Option::is_none")]
pub extra_data: Option<BTreeMap<SmolStr, Data<S>>>,
}
#[jacquard_derive::open_union]
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(tag = "$type", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub enum MessageViewReplyTo<S: BosStr = DefaultStr> {
#[serde(rename = "place.stream.chat.defs#messageView")]
MessageView(Box<chat::MessageView<S>>),
}
#[derive(Serialize, Deserialize, Debug, Clone, PartialEq, Eq, IntoStatic)]
#[serde(rename_all = "camelCase", bound(deserialize = "S: Deserialize<'de> + BosStr"))]
pub struct PinnedRecordView<S: BosStr = DefaultStr> {
pub cid: Cid<S>,
pub indexed_at: Datetime,
#[serde(skip_serializing_if = "Option::is_none")]
pub message: Option<chat::MessageView<S>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub pinned_by: Option<Profile<S>>,
pub record: PinnedRecord<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 MessageView<S> {
fn nsid() -> &'static str {
"place.stream.chat.defs"
}
fn def_name() -> &'static str {
"messageView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_chat_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
if let Some(ref value) = self.badges {
#[allow(unused_comparisons)]
if value.len() > 3usize {
return Err(ConstraintError::MaxLength {
path: ValidationPath::from_field("badges"),
max: 3usize,
actual: value.len(),
});
}
}
Ok(())
}
}
impl<S: BosStr> LexiconSchema for PinnedRecordView<S> {
fn nsid() -> &'static str {
"place.stream.chat.defs"
}
fn def_name() -> &'static str {
"pinnedRecordView"
}
fn lexicon_doc() -> LexiconDoc<'static> {
lexicon_doc_place_stream_chat_defs()
}
fn validate(&self) -> Result<(), ConstraintError> {
Ok(())
}
}
pub mod message_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 Author;
type Cid;
type IndexedAt;
type Record;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Author = Unset;
type Cid = Unset;
type IndexedAt = Unset;
type Record = Unset;
type Uri = Unset;
}
pub struct SetAuthor<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetAuthor<St> {}
impl<St: State> State for SetAuthor<St> {
type Author = Set<members::author>;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Author = St::Author;
type Cid = Set<members::cid>;
type IndexedAt = St::IndexedAt;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = Set<members::indexed_at>;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Record = Set<members::record>;
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 Author = St::Author;
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Record = St::Record;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct author(());
pub struct cid(());
pub struct indexed_at(());
pub struct record(());
pub struct uri(());
}
}
pub struct MessageViewBuilder<St: message_view_state::State, S: BosStr = DefaultStr> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<ProfileViewBasic<S>>,
Option<Vec<BadgeView<S>>>,
Option<Profile<S>>,
Option<Cid<S>>,
Option<bool>,
Option<Datetime>,
Option<Data<S>>,
Option<MessageViewReplyTo<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl MessageView<DefaultStr> {
pub fn new() -> MessageViewBuilder<message_view_state::Empty, DefaultStr> {
MessageViewBuilder::new()
}
}
impl<S: BosStr> MessageView<S> {
pub fn builder() -> MessageViewBuilder<message_view_state::Empty, S> {
MessageViewBuilder::builder()
}
}
impl MessageViewBuilder<message_view_state::Empty, DefaultStr> {
pub fn new() -> Self {
MessageViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> MessageViewBuilder<message_view_state::Empty, S> {
pub fn builder() -> Self {
MessageViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> MessageViewBuilder<St, S>
where
St: message_view_state::State,
St::Author: message_view_state::IsUnset,
{
pub fn author(
mut self,
value: impl Into<ProfileViewBasic<S>>,
) -> MessageViewBuilder<message_view_state::SetAuthor<St>, S> {
self._fields.0 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: message_view_state::State, S: BosStr> MessageViewBuilder<St, S> {
pub fn badges(mut self, value: impl Into<Option<Vec<BadgeView<S>>>>) -> Self {
self._fields.1 = value.into();
self
}
pub fn maybe_badges(mut self, value: Option<Vec<BadgeView<S>>>) -> Self {
self._fields.1 = value;
self
}
}
impl<St: message_view_state::State, S: BosStr> MessageViewBuilder<St, S> {
pub fn chat_profile(mut self, value: impl Into<Option<Profile<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_chat_profile(mut self, value: Option<Profile<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St, S: BosStr> MessageViewBuilder<St, S>
where
St: message_view_state::State,
St::Cid: message_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> MessageViewBuilder<message_view_state::SetCid<St>, S> {
self._fields.3 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: message_view_state::State, S: BosStr> MessageViewBuilder<St, S> {
pub fn deleted(mut self, value: impl Into<Option<bool>>) -> Self {
self._fields.4 = value.into();
self
}
pub fn maybe_deleted(mut self, value: Option<bool>) -> Self {
self._fields.4 = value;
self
}
}
impl<St, S: BosStr> MessageViewBuilder<St, S>
where
St: message_view_state::State,
St::IndexedAt: message_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> MessageViewBuilder<message_view_state::SetIndexedAt<St>, S> {
self._fields.5 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> MessageViewBuilder<St, S>
where
St: message_view_state::State,
St::Record: message_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<Data<S>>,
) -> MessageViewBuilder<message_view_state::SetRecord<St>, S> {
self._fields.6 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: message_view_state::State, S: BosStr> MessageViewBuilder<St, S> {
pub fn reply_to(mut self, value: impl Into<Option<MessageViewReplyTo<S>>>) -> Self {
self._fields.7 = value.into();
self
}
pub fn maybe_reply_to(mut self, value: Option<MessageViewReplyTo<S>>) -> Self {
self._fields.7 = value;
self
}
}
impl<St, S: BosStr> MessageViewBuilder<St, S>
where
St: message_view_state::State,
St::Uri: message_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> MessageViewBuilder<message_view_state::SetUri<St>, S> {
self._fields.8 = Option::Some(value.into());
MessageViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> MessageViewBuilder<St, S>
where
St: message_view_state::State,
St::Author: message_view_state::IsSet,
St::Cid: message_view_state::IsSet,
St::IndexedAt: message_view_state::IsSet,
St::Record: message_view_state::IsSet,
St::Uri: message_view_state::IsSet,
{
pub fn build(self) -> MessageView<S> {
MessageView {
author: self._fields.0.unwrap(),
badges: self._fields.1,
chat_profile: self._fields.2,
cid: self._fields.3.unwrap(),
deleted: self._fields.4,
indexed_at: self._fields.5.unwrap(),
record: self._fields.6.unwrap(),
reply_to: self._fields.7,
uri: self._fields.8.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> MessageView<S> {
MessageView {
author: self._fields.0.unwrap(),
badges: self._fields.1,
chat_profile: self._fields.2,
cid: self._fields.3.unwrap(),
deleted: self._fields.4,
indexed_at: self._fields.5.unwrap(),
record: self._fields.6.unwrap(),
reply_to: self._fields.7,
uri: self._fields.8.unwrap(),
extra_data: Some(extra_data),
}
}
}
fn lexicon_doc_place_stream_chat_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("place.stream.chat.defs"),
defs: {
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("messageView"),
LexUserType::Object(LexObject {
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("author"), SmolStr::new_static("record"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("author"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static(
"app.bsky.actor.defs#profileViewBasic",
),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("badges"),
LexObjectProperty::Array(LexArray {
description: Some(
CowStr::new_static(
"Up to 3 badge tokens to display with the message. First badge is server-controlled, remaining badges are user-settable. Tokens are looked up in badges.json for display info.",
),
),
items: LexArrayItem::Ref(LexRef {
r#ref: CowStr::new_static(
"place.stream.badge.defs#badgeView",
),
..Default::default()
}),
max_length: Some(3usize),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("chatProfile"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("place.stream.chat.profile"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("deleted"),
LexObjectProperty::Boolean(LexBoolean {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Unknown(LexUnknown {
..Default::default()
}),
);
map.insert(
SmolStr::new_static("replyTo"),
LexObjectProperty::Union(LexRefUnion {
refs: vec![CowStr::new_static("#messageView")],
..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("pinnedRecordView"),
LexUserType::Object(LexObject {
description: Some(
CowStr::new_static(
"View of a pinned chat record with hydrated message data.",
),
),
required: Some(
vec![
SmolStr::new_static("uri"), SmolStr::new_static("cid"),
SmolStr::new_static("record"),
SmolStr::new_static("indexedAt")
],
),
properties: {
#[allow(unused_mut)]
let mut map = BTreeMap::new();
map.insert(
SmolStr::new_static("cid"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Cid),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("indexedAt"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::Datetime),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("message"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("#messageView"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("pinnedBy"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("place.stream.chat.profile"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("record"),
LexObjectProperty::Ref(LexRef {
r#ref: CowStr::new_static("place.stream.chat.pinnedRecord"),
..Default::default()
}),
);
map.insert(
SmolStr::new_static("uri"),
LexObjectProperty::String(LexString {
format: Some(LexStringFormat::AtUri),
..Default::default()
}),
);
map
},
..Default::default()
}),
);
map
},
..Default::default()
}
}
pub mod pinned_record_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 Cid;
type IndexedAt;
type Record;
type Uri;
}
pub struct Empty(());
impl sealed::Sealed for Empty {}
impl State for Empty {
type Cid = Unset;
type IndexedAt = Unset;
type Record = Unset;
type Uri = Unset;
}
pub struct SetCid<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetCid<St> {}
impl<St: State> State for SetCid<St> {
type Cid = Set<members::cid>;
type IndexedAt = St::IndexedAt;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetIndexedAt<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetIndexedAt<St> {}
impl<St: State> State for SetIndexedAt<St> {
type Cid = St::Cid;
type IndexedAt = Set<members::indexed_at>;
type Record = St::Record;
type Uri = St::Uri;
}
pub struct SetRecord<St: State = Empty>(PhantomData<fn() -> St>);
impl<St: State> sealed::Sealed for SetRecord<St> {}
impl<St: State> State for SetRecord<St> {
type Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Record = Set<members::record>;
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 Cid = St::Cid;
type IndexedAt = St::IndexedAt;
type Record = St::Record;
type Uri = Set<members::uri>;
}
#[allow(non_camel_case_types)]
pub mod members {
pub struct cid(());
pub struct indexed_at(());
pub struct record(());
pub struct uri(());
}
}
pub struct PinnedRecordViewBuilder<
St: pinned_record_view_state::State,
S: BosStr = DefaultStr,
> {
_state: PhantomData<fn() -> St>,
_fields: (
Option<Cid<S>>,
Option<Datetime>,
Option<chat::MessageView<S>>,
Option<Profile<S>>,
Option<PinnedRecord<S>>,
Option<AtUri<S>>,
),
_type: PhantomData<fn() -> S>,
}
impl PinnedRecordView<DefaultStr> {
pub fn new() -> PinnedRecordViewBuilder<
pinned_record_view_state::Empty,
DefaultStr,
> {
PinnedRecordViewBuilder::new()
}
}
impl<S: BosStr> PinnedRecordView<S> {
pub fn builder() -> PinnedRecordViewBuilder<pinned_record_view_state::Empty, S> {
PinnedRecordViewBuilder::builder()
}
}
impl PinnedRecordViewBuilder<pinned_record_view_state::Empty, DefaultStr> {
pub fn new() -> Self {
PinnedRecordViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<S: BosStr> PinnedRecordViewBuilder<pinned_record_view_state::Empty, S> {
pub fn builder() -> Self {
PinnedRecordViewBuilder {
_state: PhantomData,
_fields: (None, None, None, None, None, None),
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PinnedRecordViewBuilder<St, S>
where
St: pinned_record_view_state::State,
St::Cid: pinned_record_view_state::IsUnset,
{
pub fn cid(
mut self,
value: impl Into<Cid<S>>,
) -> PinnedRecordViewBuilder<pinned_record_view_state::SetCid<St>, S> {
self._fields.0 = Option::Some(value.into());
PinnedRecordViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PinnedRecordViewBuilder<St, S>
where
St: pinned_record_view_state::State,
St::IndexedAt: pinned_record_view_state::IsUnset,
{
pub fn indexed_at(
mut self,
value: impl Into<Datetime>,
) -> PinnedRecordViewBuilder<pinned_record_view_state::SetIndexedAt<St>, S> {
self._fields.1 = Option::Some(value.into());
PinnedRecordViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St: pinned_record_view_state::State, S: BosStr> PinnedRecordViewBuilder<St, S> {
pub fn message(mut self, value: impl Into<Option<chat::MessageView<S>>>) -> Self {
self._fields.2 = value.into();
self
}
pub fn maybe_message(mut self, value: Option<chat::MessageView<S>>) -> Self {
self._fields.2 = value;
self
}
}
impl<St: pinned_record_view_state::State, S: BosStr> PinnedRecordViewBuilder<St, S> {
pub fn pinned_by(mut self, value: impl Into<Option<Profile<S>>>) -> Self {
self._fields.3 = value.into();
self
}
pub fn maybe_pinned_by(mut self, value: Option<Profile<S>>) -> Self {
self._fields.3 = value;
self
}
}
impl<St, S: BosStr> PinnedRecordViewBuilder<St, S>
where
St: pinned_record_view_state::State,
St::Record: pinned_record_view_state::IsUnset,
{
pub fn record(
mut self,
value: impl Into<PinnedRecord<S>>,
) -> PinnedRecordViewBuilder<pinned_record_view_state::SetRecord<St>, S> {
self._fields.4 = Option::Some(value.into());
PinnedRecordViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PinnedRecordViewBuilder<St, S>
where
St: pinned_record_view_state::State,
St::Uri: pinned_record_view_state::IsUnset,
{
pub fn uri(
mut self,
value: impl Into<AtUri<S>>,
) -> PinnedRecordViewBuilder<pinned_record_view_state::SetUri<St>, S> {
self._fields.5 = Option::Some(value.into());
PinnedRecordViewBuilder {
_state: PhantomData,
_fields: self._fields,
_type: PhantomData,
}
}
}
impl<St, S: BosStr> PinnedRecordViewBuilder<St, S>
where
St: pinned_record_view_state::State,
St::Cid: pinned_record_view_state::IsSet,
St::IndexedAt: pinned_record_view_state::IsSet,
St::Record: pinned_record_view_state::IsSet,
St::Uri: pinned_record_view_state::IsSet,
{
pub fn build(self) -> PinnedRecordView<S> {
PinnedRecordView {
cid: self._fields.0.unwrap(),
indexed_at: self._fields.1.unwrap(),
message: self._fields.2,
pinned_by: self._fields.3,
record: self._fields.4.unwrap(),
uri: self._fields.5.unwrap(),
extra_data: Default::default(),
}
}
pub fn build_with_data(
self,
extra_data: BTreeMap<SmolStr, Data<S>>,
) -> PinnedRecordView<S> {
PinnedRecordView {
cid: self._fields.0.unwrap(),
indexed_at: self._fields.1.unwrap(),
message: self._fields.2,
pinned_by: self._fields.3,
record: self._fields.4.unwrap(),
uri: self._fields.5.unwrap(),
extra_data: Some(extra_data),
}
}
}