19 lines
508 B
Go
19 lines
508 B
Go
|
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"`
|
||
|
}
|