mirror of
https://mau.dev/mautrix/go.git
synced 2026-03-15 14:55:51 +01:00
10 lines
331 B
Go
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"`
|
|
}
|