2022-12-10 17:17:16 +00:00
|
|
|
package types
|
|
|
|
|
|
|
|
type PersonViewSafe struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
Person PersonSafe `json:"person" url:"person,omitempty"`
|
|
|
|
Counts PersonAggregates `json:"counts" url:"counts,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PersonMentionView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
PersonMention PersonMention `json:"person_mention" url:"person_mention,omitempty"`
|
|
|
|
Comment Comment `json:"comment" url:"comment,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
Recipient PersonSafe `json:"recipient" url:"recipient,omitempty"`
|
|
|
|
Counts CommentAggregates `json:"counts" url:"counts,omitempty"`
|
|
|
|
CreatorBannedFromCommunity bool `json:"creator_banned_from_community" url:"creator_banned_from_community,omitempty"`
|
|
|
|
Subscribed bool `json:"subscribed" url:"subscribed,omitempty"`
|
|
|
|
Saved bool `json:"saved" url:"saved,omitempty"`
|
|
|
|
CreatorBlocked bool `json:"creator_blocked" url:"creator_blocked,omitempty"`
|
|
|
|
MyVote Optional[int] `json:"my_vote" url:"my_vote,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type LocalUserSettingsView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
LocalUserSettings LocalUserSettings `json:"local_user_settings" url:"local_user_settings,omitempty"`
|
|
|
|
Person PersonSafe `json:"person" url:"person,omitempty"`
|
|
|
|
Counts PersonAggregates `json:"counts" url:"counts,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type SiteView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
Site Site `json:"site" url:"site,omitempty"`
|
|
|
|
LocalSite LocalSite `json:"local_site" url:"local_site,omitempty"`
|
|
|
|
LocalSiteRateLimit LocalSiteRateLimit `json:"local_site_rate_limit" url:"local_site_rate_limit,omitempty"`
|
|
|
|
Taglines Optional[[]Tagline] `json:"taglines" url:"taglines,omitempty"`
|
|
|
|
Counts SiteAggregates `json:"counts" url:"counts,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PrivateMessageView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
PrivateMessage PrivateMessage `json:"private_message" url:"private_message,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
Recipient PersonSafe `json:"recipient" url:"recipient,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PostView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
Community CommunitySafe `json:"community" url:"community,omitempty"`
|
|
|
|
CreatorBannedFromCommunity bool `json:"creator_banned_from_community" url:"creator_banned_from_community,omitempty"`
|
|
|
|
Counts PostAggregates `json:"counts" url:"counts,omitempty"`
|
|
|
|
Subscribed bool `json:"subscribed" url:"subscribed,omitempty"`
|
|
|
|
Saved bool `json:"saved" url:"saved,omitempty"`
|
|
|
|
Read bool `json:"read" url:"read,omitempty"`
|
|
|
|
CreatorBlocked bool `json:"creator_blocked" url:"creator_blocked,omitempty"`
|
|
|
|
MyVote Optional[int] `json:"my_vote" url:"my_vote,omitempty"`
|
|
|
|
UnreadComments int `json:"unread_comments" url:"unread_comments,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PostReportView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
PostReport PostReport `json:"post_report" url:"post_report,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
Community CommunitySafe `json:"community" url:"community,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
PostCreator PersonSafe `json:"post_creator" url:"post_creator,omitempty"`
|
|
|
|
CreatorBannedFromCommunity bool `json:"creator_banned_from_community" url:"creator_banned_from_community,omitempty"`
|
|
|
|
MyVote Optional[int] `json:"my_vote" url:"my_vote,omitempty"`
|
|
|
|
Counts PostAggregates `json:"counts" url:"counts,omitempty"`
|
|
|
|
Resolver Optional[PersonSafe] `json:"resolver" url:"resolver,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommentView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
Comment Comment `json:"comment" url:"comment,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
Community CommunitySafe `json:"community" url:"community,omitempty"`
|
|
|
|
Counts CommentAggregates `json:"counts" url:"counts,omitempty"`
|
|
|
|
CreatorBannedFromCommunity bool `json:"creator_banned_from_community" url:"creator_banned_from_community,omitempty"`
|
|
|
|
Subscribed bool `json:"subscribed" url:"subscribed,omitempty"`
|
|
|
|
Saved bool `json:"saved" url:"saved,omitempty"`
|
|
|
|
CreatorBlocked bool `json:"creator_blocked" url:"creator_blocked,omitempty"`
|
|
|
|
MyVote Optional[int] `json:"my_vote" url:"my_vote,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommentReportView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
CommentReport CommentReport `json:"comment_report" url:"comment_report,omitempty"`
|
|
|
|
Comment Comment `json:"comment" url:"comment,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
CommentCreator PersonSafe `json:"comment_creator" url:"comment_creator,omitempty"`
|
|
|
|
Counts CommentAggregates `json:"counts" url:"counts,omitempty"`
|
|
|
|
CreatorBannedFromCommunity bool `json:"creator_banned_from_community" url:"creator_banned_from_community,omitempty"`
|
|
|
|
MyVote Optional[int] `json:"my_vote" url:"my_vote,omitempty"`
|
|
|
|
Resolver Optional[PersonSafe] `json:"resolver" url:"resolver,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModAddCommunityView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModAddCommunity ModAddCommunity `json:"mod_add_community" url:"mod_add_community,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
ModdedPerson PersonSafe `json:"modded_person" url:"modded_person,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModTransferCommunityView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModTransferCommunity ModTransferCommunity `json:"mod_transfer_community" url:"mod_transfer_community,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
ModdedPerson PersonSafe `json:"modded_person" url:"modded_person,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModAddView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModAdd ModAdd `json:"mod_add" url:"mod_add,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
ModdedPerson PersonSafe `json:"modded_person" url:"modded_person,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModBanFromCommunityView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModBanFromCommunity ModBanFromCommunity `json:"mod_ban_from_community" url:"mod_ban_from_community,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
BannedPerson PersonSafe `json:"banned_person" url:"banned_person,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModBanView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModBan ModBan `json:"mod_ban" url:"mod_ban,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
BannedPerson PersonSafe `json:"banned_person" url:"banned_person,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModLockPostView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModLockPost ModLockPost `json:"mod_lock_post" url:"mod_lock_post,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModRemoveCommentView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModRemoveComment ModRemoveComment `json:"mod_remove_comment" url:"mod_remove_comment,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
Comment Comment `json:"comment" url:"comment,omitempty"`
|
|
|
|
Commenter PersonSafe `json:"commenter" url:"commenter,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModRemoveCommunityView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModRemoveCommunity ModRemoveCommunity `json:"mod_remove_community" url:"mod_remove_community,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModRemovePostView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModRemovePost ModRemovePost `json:"mod_remove_post" url:"mod_remove_post,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ModStickyPostView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ModStickyPost ModStickyPost `json:"mod_sticky_post" url:"mod_sticky_post,omitempty"`
|
|
|
|
Moderator Optional[PersonSafe] `json:"moderator" url:"moderator,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AdminPurgeCommunityView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
AdminPurgeCommunity AdminPurgeCommunity `json:"admin_purge_community" url:"admin_purge_community,omitempty"`
|
|
|
|
Admin Optional[PersonSafe] `json:"admin" url:"admin,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AdminPurgePersonView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
AdminPurgePerson AdminPurgePerson `json:"admin_purge_person" url:"admin_purge_person,omitempty"`
|
|
|
|
Admin Optional[PersonSafe] `json:"admin" url:"admin,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AdminPurgePostView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
AdminPurgePost AdminPurgePost `json:"admin_purge_post" url:"admin_purge_post,omitempty"`
|
|
|
|
Admin Optional[PersonSafe] `json:"admin" url:"admin,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type AdminPurgeCommentView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
AdminPurgeComment AdminPurgeComment `json:"admin_purge_comment" url:"admin_purge_comment,omitempty"`
|
|
|
|
Admin Optional[PersonSafe] `json:"admin" url:"admin,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommunityFollowerView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
Follower PersonSafe `json:"follower" url:"follower,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommunityBlockView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
PersonSafe PersonSafe `json:"person_safe" url:"person_safe,omitempty"`
|
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommunityModeratorView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
Moderator PersonSafe `json:"moderator" url:"moderator,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommunityPersonBanView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
Person PersonSafe `json:"person" url:"person,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PersonBlockView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
PersonSafe PersonSafe `json:"person_safe" url:"person_safe,omitempty"`
|
|
|
|
Target PersonSafe `json:"target" url:"target,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommunityView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
CommunitySafe CommunitySafe `json:"community_safe" url:"community_safe,omitempty"`
|
|
|
|
Subscribed bool `json:"subscribed" url:"subscribed,omitempty"`
|
|
|
|
Blocked bool `json:"blocked" url:"blocked,omitempty"`
|
|
|
|
Counts CommunityAggregates `json:"counts" url:"counts,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type RegistrationApplicationView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
RegistrationApplication RegistrationApplication `json:"registration_application" url:"registration_application,omitempty"`
|
|
|
|
CreatorLocalUser LocalUserSettings `json:"creator_local_user" url:"creator_local_user,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
Admin Optional[PersonSafe] `json:"admin" url:"admin,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PrivateMessageReportView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
PrivateMessageReport PrivateMessageReport `json:"private_message_report" url:"private_message_report,omitempty"`
|
|
|
|
PrivateMessage PrivateMessage `json:"private_message" url:"private_message,omitempty"`
|
|
|
|
PrivateMessageCreator PersonSafe `json:"private_message_creator" url:"private_message_creator,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
Resolver Optional[PersonSafe] `json:"resolver" url:"resolver,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Tagline struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
ID int `json:"id" url:"id,omitempty"`
|
|
|
|
LocalSiteID int `json:"local_site_id" url:"local_site_id,omitempty"`
|
|
|
|
Content string `json:"content" url:"content,omitempty"`
|
|
|
|
Published string `json:"published" url:"published,omitempty"`
|
|
|
|
Updated Optional[string] `json:"updated" url:"updated,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CommentReplyView struct {
|
2022-12-10 23:33:08 +00:00
|
|
|
CommentReply CommentReply `json:"comment_reply" url:"comment_reply,omitempty"`
|
|
|
|
Comment Comment `json:"comment" url:"comment,omitempty"`
|
|
|
|
Creator PersonSafe `json:"creator" url:"creator,omitempty"`
|
|
|
|
Post Post `json:"post" url:"post,omitempty"`
|
|
|
|
Community CommunitySafe `json:"community" url:"community,omitempty"`
|
|
|
|
Recipient PersonSafe `json:"recipient" url:"recipient,omitempty"`
|
|
|
|
Counts CommentAggregates `json:"counts" url:"counts,omitempty"`
|
|
|
|
CreatorBannedFromCommunity bool `json:"creator_banned_from_community" url:"creator_banned_from_community,omitempty"`
|
|
|
|
Subscribed bool `json:"subscribed" url:"subscribed,omitempty"`
|
|
|
|
Saved bool `json:"saved" url:"saved,omitempty"`
|
|
|
|
CreatorBlocked bool `json:"creator_blocked" url:"creator_blocked,omitempty"`
|
|
|
|
MyVote Optional[int] `json:"my_vote" url:"my_vote,omitempty"`
|
2022-12-10 17:17:16 +00:00
|
|
|
}
|