2023-09-26 05:52:45 +00:00
package ent
2023-09-26 04:54:59 +00:00
import (
2024-08-01 23:59:52 +00:00
"github.com/reiver/go-nul"
2024-08-01 23:04:28 +00:00
"github.com/reiver/go-jsonint"
2024-08-01 22:29:50 +00:00
"github.com/reiver/go-opt"
2023-09-26 04:54:59 +00:00
)
// Account represents a Mastodon API "Account".
//
// See:
// https://docs.joinmastodon.org/entities/Account/
type Account struct {
2023-09-27 21:13:25 +00:00
ID opt . Optional [ string ] ` json:"id" `
2024-08-08 19:22:10 +00:00
UserName opt . Optional [ string ] ` json:"username,omitempty" `
Acct opt . Optional [ string ] ` json:"acct,omitempty" `
URL opt . Optional [ string ] ` json:"url,omitempty" `
URI opt . Optional [ string ] ` json:"uri,omitempty" ` // currently undocumented, but is included in in account JSON returned from the Mastodon API on mastodon.social.
DisplayName opt . Optional [ string ] ` json:"display_name,omitempty" `
Note opt . Optional [ string ] ` json:"note,omitempty" `
Avatar opt . Optional [ string ] ` json:"avatar,omitempty" `
AvatarStatic opt . Optional [ string ] ` json:"avatar_static,omitempty" `
Header opt . Optional [ string ] ` json:"header,omitempty" `
HeaderStatic opt . Optional [ string ] ` json:"header_static,omitempty" `
Fields [ ] Field ` json:"fields,omitempty" `
Emojis [ ] CustomEmoji ` json:"emojis,omitempty" `
Locked opt . Optional [ bool ] ` json:"locked,omitempty" `
Bot opt . Optional [ bool ] ` json:"bot,omitempty" `
Group opt . Optional [ bool ] ` json:"group,omitempty" `
Discoverable nul . Nullable [ bool ] ` json:"discoverable,omitempty" `
NoIndex nul . Nullable [ bool ] ` json:"noindex,omitempty" `
Moved nul . Nullable [ AccountHolder ] ` json:"moved,omitempty" `
Suspended opt . Optional [ bool ] ` json:"suspended,omitempty" `
Limited opt . Optional [ bool ] ` json:"limited,omitempty" `
CreatedAt opt . Optional [ string ] ` json:"created_at,omitempty" `
LastStatusAt nul . Nullable [ string ] ` json:"last_status_at,omitempty" `
StatusesCount opt . Optional [ jsonint . Int ] ` json:"statuses_count,omitempty" `
FollowersCount opt . Optional [ jsonint . Int ] ` json:"followers_count,omitempty" `
FollowingCount opt . Optional [ jsonint . Int ] ` json:"following_count,omitempty" `
Roles [ ] Role ` json:"roles,omitempty" `
MuteExpiresAt nul . Nullable [ string ] ` json:"mute_expires_at,omitempty" `
2023-09-26 04:54:59 +00:00
}