All current keys in the constants for those namespaces (that are attributes) are now added Also remove useless import in the ActivityStreams namespace
14 lines
286 B
Go
14 lines
286 B
Go
package goap
|
|
|
|
// inbox
|
|
type InboxData struct {
|
|
FullIdType
|
|
}
|
|
|
|
func (actor *InboxData) GetSelfOrBase() (BaseApChain, bool) {
|
|
return actor.FullIdType.GetSelfOrBase()
|
|
}
|
|
|
|
func (actor *InboxData) MarshalToMap() map[string]any {
|
|
return actor.FullIdType.MarshalToMapWithName(KEY_W3_INBOX)
|
|
}
|