2021-03-24 15:33:34 -04:00
|
|
|
package activitystreams
|
|
|
|
|
|
|
|
|
|
type Attachment struct {
|
|
|
|
|
Type AttachmentType `json:"type"`
|
|
|
|
|
URL string `json:"url"`
|
|
|
|
|
MediaType string `json:"mediaType"`
|
|
|
|
|
Name string `json:"name"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
type AttachmentType string
|
|
|
|
|
|
|
|
|
|
const AttachImage AttachmentType = "Image"
|