mirror of
https://github.com/FluuxIO/go-xmpp
synced 2024-11-11 07:11:03 +00:00
Merge pull request #1 from ianlamb/master
feat!: change msg subject and body to localizable structs
This commit is contained in:
commit
3243555edb
@ -8,16 +8,21 @@ import (
|
||||
// ============================================================================
|
||||
// Message Packet
|
||||
|
||||
type LocalizedString struct {
|
||||
Content string `xml:",chardata"`
|
||||
Lang string `xml:"lang,attr,omitempty"`
|
||||
}
|
||||
|
||||
// Message implements RFC 6120 - A.5 Client Namespace (a part)
|
||||
type Message struct {
|
||||
XMLName xml.Name `xml:"message"`
|
||||
Attrs
|
||||
|
||||
Subject string `xml:"subject,omitempty"`
|
||||
Body string `xml:"body,omitempty"`
|
||||
Thread string `xml:"thread,omitempty"`
|
||||
Error Err `xml:"error,omitempty"`
|
||||
Extensions []MsgExtension `xml:",omitempty"`
|
||||
Subject []LocalizedString `xml:"subject,omitempty"`
|
||||
Body []LocalizedString `xml:"body,omitempty"`
|
||||
Thread string `xml:"thread,omitempty"`
|
||||
Error Err `xml:"error,omitempty"`
|
||||
Extensions []MsgExtension `xml:",omitempty"`
|
||||
}
|
||||
|
||||
func (Message) Name() string {
|
||||
|
Loading…
Reference in New Issue
Block a user