12 lines
375 B
Go
12 lines
375 B
Go
package translators
|
|
|
|
type ActivityLikeOut struct {
|
|
Context any `json:"@context"`
|
|
Type string `json:"type"`
|
|
Id string `json:"id"`
|
|
Actor string `json:"actor"`
|
|
Object string `json:"object"`
|
|
Content *string `json:"content,omitempty"`
|
|
MkReaction *string `json:"_misskey_reaction,omitempty"`
|
|
Tags []Tag `json:"tag,omitempty"`
|
|
}
|