mirror of
https://github.com/FluuxIO/go-xmpp.git
synced 2024-11-21 18:12:00 -08: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,13 +8,18 @@ import (
|
|||||||
// ============================================================================
|
// ============================================================================
|
||||||
// Message Packet
|
// 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)
|
// Message implements RFC 6120 - A.5 Client Namespace (a part)
|
||||||
type Message struct {
|
type Message struct {
|
||||||
XMLName xml.Name `xml:"message"`
|
XMLName xml.Name `xml:"message"`
|
||||||
Attrs
|
Attrs
|
||||||
|
|
||||||
Subject string `xml:"subject,omitempty"`
|
Subject []LocalizedString `xml:"subject,omitempty"`
|
||||||
Body string `xml:"body,omitempty"`
|
Body []LocalizedString `xml:"body,omitempty"`
|
||||||
Thread string `xml:"thread,omitempty"`
|
Thread string `xml:"thread,omitempty"`
|
||||||
Error Err `xml:"error,omitempty"`
|
Error Err `xml:"error,omitempty"`
|
||||||
Extensions []MsgExtension `xml:",omitempty"`
|
Extensions []MsgExtension `xml:",omitempty"`
|
||||||
|
Loading…
Reference in New Issue
Block a user