mirror of
https://github.com/owncast/owncast.git
synced 2024-11-24 05:38:58 +03:00
13 lines
312 B
Go
13 lines
312 B
Go
|
package models
|
||
|
|
||
|
import "time"
|
||
|
|
||
|
// FederatedActivity is an internal representation of an activity that was
|
||
|
// accepted and stored.
|
||
|
type FederatedActivity struct {
|
||
|
IRI string `json:"iri"`
|
||
|
ActorIRI string `json:"actorIRI"`
|
||
|
Type string `json:"type"`
|
||
|
Timestamp time.Time `json:"timestamp"`
|
||
|
}
|