legacy.go 681 B

12345678910111213141516171819202122232425262728293031
  1. package waE2E
  2. // Deprecated: Use GetKeyID
  3. func (x *AppStateSyncKey) GetKeyId() *AppStateSyncKeyId {
  4. return x.GetKeyID()
  5. }
  6. // Deprecated: Use GetKeyID
  7. func (x *AppStateSyncKeyId) GetKeyId() []byte {
  8. return x.GetKeyID()
  9. }
  10. // Deprecated: Use GetStanzaID
  11. func (x *PeerDataOperationRequestResponseMessage) GetStanzaId() string {
  12. return x.GetStanzaID()
  13. }
  14. // Deprecated: Use GetMentionedJID
  15. func (x *ContextInfo) GetMentionedJid() []string {
  16. return x.GetMentionedJID()
  17. }
  18. // Deprecated: Use GetRemoteJID
  19. func (x *ContextInfo) GetRemoteJid() string {
  20. return x.GetRemoteJID()
  21. }
  22. // Deprecated: Use GetStanzaID
  23. func (x *ContextInfo) GetStanzaId() string {
  24. return x.GetStanzaID()
  25. }