12 lines
370 B
Go
12 lines
370 B
Go
|
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"`
|
||
|
}
|