ActivityPub/entities/object/object.go

12 lines
370 B
Go
Raw Normal View History

2020-10-17 10:13:15 +00:00
package object
type Object struct {
Context string `json:"@context,omitempty"`
Id string `json:"id,omitempty"`
Type string `json:"type,omitempty"`
AttributedTo string `json:"attributedTo,omitempty"`
Content string `json:"content,omitempty"`
Published int64 `json:"published,omitempty"`
To string `json:"to,omitempty"`
}