activity/streams/vocab/gen_pkg.go

10 行
236 B
Go

package vocab
// Type represents an ActivityStreams type.
type Type interface {
// GetName returns the ActivityStreams type name.
GetName() string
// VocabularyURI returns the vocabulary's URI as a string.
VocabularyURI() string
}