Compare commits

...

2 Commits

Author SHA1 Message Date
Charles Iliya Krempeaux 22d8e80737 initial commits 2023-09-27 04:55:34 +09:00
Charles Iliya Krempeaux 96ced3daa9 initial commits 2023-09-27 04:53:17 +09:00
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,18 @@
package ent
import (
"sourcecode.social/reiver/go-opt"
)
// Notification represents a Mastodon API "Notification".
//
// See:
// https://docs.joinmastodon.org/entities/Notification/
type Notification struct {
ID opt.Optional[string] `json:"id"`
Type opt.Optional[string] `json:"type"`
CreatedAt opt.Optional[string] `json:"created_at"`
Account Account `json:"account"`
Status opt.Optional[Status] `json:"account"`
Report opt.Optional[Report] `json:"report"`
}

25
ent/report.go 100644
View File

@ -0,0 +1,25 @@
package ent
import (
"encoding/json"
"sourcecode.social/reiver/go-nul"
"sourcecode.social/reiver/go-opt"
)
// Report represents a Mastodon API "Report".
//
// See:
// https://docs.joinmastodon.org/entities/Report/
type Report struct {
ID opt.Optional[string] `json:"id"`
ActionTaken opt.Optional[bool] `json:"action_taken"`
ActionTakenAt nul.Nullable[string] `json:"action_taken_at"`
Category opt.Optional[string] `json:"category"`
Comment opt.Optional[string] `json:"comment"`
Forwarded opt.Optional[bool] `json:"forwarded"`
CreatedAt opt.Optional[string] `json:"created_at"`
StatusIDs json.RawMessage `json:"status_ids"`
RuleIDs json.RawMessage `json:"rule_ids"`
TargetAccount Account `json:"target_account"`
}