mirror of
https://github.com/42wim/matterbridge.git
synced 2024-11-27 21:22:03 -08:00
c4157a4d5b
* Update dependencies * Fix whatsmeow API changes
32 lines
681 B
Go
32 lines
681 B
Go
package waE2E
|
|
|
|
// Deprecated: Use GetKeyID
|
|
func (x *AppStateSyncKey) GetKeyId() *AppStateSyncKeyId {
|
|
return x.GetKeyID()
|
|
}
|
|
|
|
// Deprecated: Use GetKeyID
|
|
func (x *AppStateSyncKeyId) GetKeyId() []byte {
|
|
return x.GetKeyID()
|
|
}
|
|
|
|
// Deprecated: Use GetStanzaID
|
|
func (x *PeerDataOperationRequestResponseMessage) GetStanzaId() string {
|
|
return x.GetStanzaID()
|
|
}
|
|
|
|
// Deprecated: Use GetMentionedJID
|
|
func (x *ContextInfo) GetMentionedJid() []string {
|
|
return x.GetMentionedJID()
|
|
}
|
|
|
|
// Deprecated: Use GetRemoteJID
|
|
func (x *ContextInfo) GetRemoteJid() string {
|
|
return x.GetRemoteJID()
|
|
}
|
|
|
|
// Deprecated: Use GetStanzaID
|
|
func (x *ContextInfo) GetStanzaId() string {
|
|
return x.GetStanzaID()
|
|
}
|