mautrix-go/event/profile.go
2024-07-17 13:29:13 +03:00

10 lines
331 B
Go

package event
import "maunium.net/go/mautrix/id"
type BeeperPerMessageProfile struct {
ID string `json:"id"`
Displayname string `json:"displayname,omitempty"`
AvatarURL *id.ContentURIString `json:"avatar_url,omitempty"`
AvatarFile *EncryptedFileInfo `json:"avatar_file,omitempty"`
}