2018-06-22 16:42:38 -04:00
|
|
|
package activitystreams
|
|
|
|
|
|
|
|
|
|
type (
|
|
|
|
|
PublicKey struct {
|
|
|
|
|
ID string `json:"id"`
|
|
|
|
|
Owner string `json:"owner"`
|
|
|
|
|
PublicKeyPEM string `json:"publicKeyPem"`
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Image struct {
|
|
|
|
|
Type string `json:"type"`
|
|
|
|
|
MediaType string `json:"mediaType"`
|
|
|
|
|
URL string `json:"url"`
|
|
|
|
|
}
|
|
|
|
|
)
|