7a04f298d2
- update to latest telegram layer - remove some references to fields in tg.Entities that don't exist in the schema - originally added here: https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e - referenced here - https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3 - https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
717 lines
18 KiB
Go
717 lines
18 KiB
Go
// Code generated by gotdgen, DO NOT EDIT.
|
|
|
|
package tg
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"sort"
|
|
"strings"
|
|
|
|
"go.uber.org/multierr"
|
|
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdjson"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tdp"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tgerr"
|
|
)
|
|
|
|
// No-op definition for keeping imports.
|
|
var (
|
|
_ = bin.Buffer{}
|
|
_ = context.Background()
|
|
_ = fmt.Stringer(nil)
|
|
_ = strings.Builder{}
|
|
_ = errors.Is
|
|
_ = multierr.AppendInto
|
|
_ = sort.Ints
|
|
_ = tdp.Format
|
|
_ = tgerr.Error{}
|
|
_ = tdjson.Encoder{}
|
|
)
|
|
|
|
// PeerNotifySettings represents TL type `peerNotifySettings#99622c0c`.
|
|
// Notification settings.
|
|
//
|
|
// See https://core.telegram.org/constructor/peerNotifySettings for reference.
|
|
type PeerNotifySettings struct {
|
|
// Flags, see TL conditional fields¹
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
|
Flags bin.Fields
|
|
// (Ternary value) If set, indicates whether or not to display previews of messages in
|
|
// notifications; otherwise the default behavior should be used.
|
|
//
|
|
// Use SetShowPreviews and GetShowPreviews helpers.
|
|
ShowPreviews bool
|
|
// (Ternary value) If set, indicates whether to mute or unmute the peer; otherwise the
|
|
// default behavior should be used.
|
|
//
|
|
// Use SetSilent and GetSilent helpers.
|
|
Silent bool
|
|
// Mute all notifications until this date
|
|
//
|
|
// Use SetMuteUntil and GetMuteUntil helpers.
|
|
MuteUntil int
|
|
// Notification sound for the official iOS application
|
|
//
|
|
// Use SetIosSound and GetIosSound helpers.
|
|
IosSound NotificationSoundClass
|
|
// Notification sound for the official android application
|
|
//
|
|
// Use SetAndroidSound and GetAndroidSound helpers.
|
|
AndroidSound NotificationSoundClass
|
|
// Notification sound for other applications
|
|
//
|
|
// Use SetOtherSound and GetOtherSound helpers.
|
|
OtherSound NotificationSoundClass
|
|
// Whether story notifications should be disabled.
|
|
//
|
|
// Use SetStoriesMuted and GetStoriesMuted helpers.
|
|
StoriesMuted bool
|
|
// Whether the sender name should be displayed in story notifications.
|
|
//
|
|
// Use SetStoriesHideSender and GetStoriesHideSender helpers.
|
|
StoriesHideSender bool
|
|
// Sound for story notifications on the official iOS application
|
|
//
|
|
// Use SetStoriesIosSound and GetStoriesIosSound helpers.
|
|
StoriesIosSound NotificationSoundClass
|
|
// Sound for story notifications on the official Android application
|
|
//
|
|
// Use SetStoriesAndroidSound and GetStoriesAndroidSound helpers.
|
|
StoriesAndroidSound NotificationSoundClass
|
|
// Sound for story notifications on other applications
|
|
//
|
|
// Use SetStoriesOtherSound and GetStoriesOtherSound helpers.
|
|
StoriesOtherSound NotificationSoundClass
|
|
}
|
|
|
|
// PeerNotifySettingsTypeID is TL type id of PeerNotifySettings.
|
|
const PeerNotifySettingsTypeID = 0x99622c0c
|
|
|
|
// Ensuring interfaces in compile-time for PeerNotifySettings.
|
|
var (
|
|
_ bin.Encoder = &PeerNotifySettings{}
|
|
_ bin.Decoder = &PeerNotifySettings{}
|
|
_ bin.BareEncoder = &PeerNotifySettings{}
|
|
_ bin.BareDecoder = &PeerNotifySettings{}
|
|
)
|
|
|
|
func (p *PeerNotifySettings) Zero() bool {
|
|
if p == nil {
|
|
return true
|
|
}
|
|
if !(p.Flags.Zero()) {
|
|
return false
|
|
}
|
|
if !(p.ShowPreviews == false) {
|
|
return false
|
|
}
|
|
if !(p.Silent == false) {
|
|
return false
|
|
}
|
|
if !(p.MuteUntil == 0) {
|
|
return false
|
|
}
|
|
if !(p.IosSound == nil) {
|
|
return false
|
|
}
|
|
if !(p.AndroidSound == nil) {
|
|
return false
|
|
}
|
|
if !(p.OtherSound == nil) {
|
|
return false
|
|
}
|
|
if !(p.StoriesMuted == false) {
|
|
return false
|
|
}
|
|
if !(p.StoriesHideSender == false) {
|
|
return false
|
|
}
|
|
if !(p.StoriesIosSound == nil) {
|
|
return false
|
|
}
|
|
if !(p.StoriesAndroidSound == nil) {
|
|
return false
|
|
}
|
|
if !(p.StoriesOtherSound == nil) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (p *PeerNotifySettings) String() string {
|
|
if p == nil {
|
|
return "PeerNotifySettings(nil)"
|
|
}
|
|
type Alias PeerNotifySettings
|
|
return fmt.Sprintf("PeerNotifySettings%+v", Alias(*p))
|
|
}
|
|
|
|
// FillFrom fills PeerNotifySettings from given interface.
|
|
func (p *PeerNotifySettings) FillFrom(from interface {
|
|
GetShowPreviews() (value bool, ok bool)
|
|
GetSilent() (value bool, ok bool)
|
|
GetMuteUntil() (value int, ok bool)
|
|
GetIosSound() (value NotificationSoundClass, ok bool)
|
|
GetAndroidSound() (value NotificationSoundClass, ok bool)
|
|
GetOtherSound() (value NotificationSoundClass, ok bool)
|
|
GetStoriesMuted() (value bool, ok bool)
|
|
GetStoriesHideSender() (value bool, ok bool)
|
|
GetStoriesIosSound() (value NotificationSoundClass, ok bool)
|
|
GetStoriesAndroidSound() (value NotificationSoundClass, ok bool)
|
|
GetStoriesOtherSound() (value NotificationSoundClass, ok bool)
|
|
}) {
|
|
if val, ok := from.GetShowPreviews(); ok {
|
|
p.ShowPreviews = val
|
|
}
|
|
|
|
if val, ok := from.GetSilent(); ok {
|
|
p.Silent = val
|
|
}
|
|
|
|
if val, ok := from.GetMuteUntil(); ok {
|
|
p.MuteUntil = val
|
|
}
|
|
|
|
if val, ok := from.GetIosSound(); ok {
|
|
p.IosSound = val
|
|
}
|
|
|
|
if val, ok := from.GetAndroidSound(); ok {
|
|
p.AndroidSound = val
|
|
}
|
|
|
|
if val, ok := from.GetOtherSound(); ok {
|
|
p.OtherSound = val
|
|
}
|
|
|
|
if val, ok := from.GetStoriesMuted(); ok {
|
|
p.StoriesMuted = val
|
|
}
|
|
|
|
if val, ok := from.GetStoriesHideSender(); ok {
|
|
p.StoriesHideSender = val
|
|
}
|
|
|
|
if val, ok := from.GetStoriesIosSound(); ok {
|
|
p.StoriesIosSound = val
|
|
}
|
|
|
|
if val, ok := from.GetStoriesAndroidSound(); ok {
|
|
p.StoriesAndroidSound = val
|
|
}
|
|
|
|
if val, ok := from.GetStoriesOtherSound(); ok {
|
|
p.StoriesOtherSound = val
|
|
}
|
|
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*PeerNotifySettings) TypeID() uint32 {
|
|
return PeerNotifySettingsTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*PeerNotifySettings) TypeName() string {
|
|
return "peerNotifySettings"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (p *PeerNotifySettings) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "peerNotifySettings",
|
|
ID: PeerNotifySettingsTypeID,
|
|
}
|
|
if p == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "ShowPreviews",
|
|
SchemaName: "show_previews",
|
|
Null: !p.Flags.Has(0),
|
|
},
|
|
{
|
|
Name: "Silent",
|
|
SchemaName: "silent",
|
|
Null: !p.Flags.Has(1),
|
|
},
|
|
{
|
|
Name: "MuteUntil",
|
|
SchemaName: "mute_until",
|
|
Null: !p.Flags.Has(2),
|
|
},
|
|
{
|
|
Name: "IosSound",
|
|
SchemaName: "ios_sound",
|
|
Null: !p.Flags.Has(3),
|
|
},
|
|
{
|
|
Name: "AndroidSound",
|
|
SchemaName: "android_sound",
|
|
Null: !p.Flags.Has(4),
|
|
},
|
|
{
|
|
Name: "OtherSound",
|
|
SchemaName: "other_sound",
|
|
Null: !p.Flags.Has(5),
|
|
},
|
|
{
|
|
Name: "StoriesMuted",
|
|
SchemaName: "stories_muted",
|
|
Null: !p.Flags.Has(6),
|
|
},
|
|
{
|
|
Name: "StoriesHideSender",
|
|
SchemaName: "stories_hide_sender",
|
|
Null: !p.Flags.Has(7),
|
|
},
|
|
{
|
|
Name: "StoriesIosSound",
|
|
SchemaName: "stories_ios_sound",
|
|
Null: !p.Flags.Has(8),
|
|
},
|
|
{
|
|
Name: "StoriesAndroidSound",
|
|
SchemaName: "stories_android_sound",
|
|
Null: !p.Flags.Has(9),
|
|
},
|
|
{
|
|
Name: "StoriesOtherSound",
|
|
SchemaName: "stories_other_sound",
|
|
Null: !p.Flags.Has(10),
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// SetFlags sets flags for non-zero fields.
|
|
func (p *PeerNotifySettings) SetFlags() {
|
|
if !(p.ShowPreviews == false) {
|
|
p.Flags.Set(0)
|
|
}
|
|
if !(p.Silent == false) {
|
|
p.Flags.Set(1)
|
|
}
|
|
if !(p.MuteUntil == 0) {
|
|
p.Flags.Set(2)
|
|
}
|
|
if !(p.IosSound == nil) {
|
|
p.Flags.Set(3)
|
|
}
|
|
if !(p.AndroidSound == nil) {
|
|
p.Flags.Set(4)
|
|
}
|
|
if !(p.OtherSound == nil) {
|
|
p.Flags.Set(5)
|
|
}
|
|
if !(p.StoriesMuted == false) {
|
|
p.Flags.Set(6)
|
|
}
|
|
if !(p.StoriesHideSender == false) {
|
|
p.Flags.Set(7)
|
|
}
|
|
if !(p.StoriesIosSound == nil) {
|
|
p.Flags.Set(8)
|
|
}
|
|
if !(p.StoriesAndroidSound == nil) {
|
|
p.Flags.Set(9)
|
|
}
|
|
if !(p.StoriesOtherSound == nil) {
|
|
p.Flags.Set(10)
|
|
}
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (p *PeerNotifySettings) Encode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode peerNotifySettings#99622c0c as nil")
|
|
}
|
|
b.PutID(PeerNotifySettingsTypeID)
|
|
return p.EncodeBare(b)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (p *PeerNotifySettings) EncodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't encode peerNotifySettings#99622c0c as nil")
|
|
}
|
|
p.SetFlags()
|
|
if err := p.Flags.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field flags: %w", err)
|
|
}
|
|
if p.Flags.Has(0) {
|
|
b.PutBool(p.ShowPreviews)
|
|
}
|
|
if p.Flags.Has(1) {
|
|
b.PutBool(p.Silent)
|
|
}
|
|
if p.Flags.Has(2) {
|
|
b.PutInt(p.MuteUntil)
|
|
}
|
|
if p.Flags.Has(3) {
|
|
if p.IosSound == nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field ios_sound is nil")
|
|
}
|
|
if err := p.IosSound.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field ios_sound: %w", err)
|
|
}
|
|
}
|
|
if p.Flags.Has(4) {
|
|
if p.AndroidSound == nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field android_sound is nil")
|
|
}
|
|
if err := p.AndroidSound.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field android_sound: %w", err)
|
|
}
|
|
}
|
|
if p.Flags.Has(5) {
|
|
if p.OtherSound == nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field other_sound is nil")
|
|
}
|
|
if err := p.OtherSound.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field other_sound: %w", err)
|
|
}
|
|
}
|
|
if p.Flags.Has(6) {
|
|
b.PutBool(p.StoriesMuted)
|
|
}
|
|
if p.Flags.Has(7) {
|
|
b.PutBool(p.StoriesHideSender)
|
|
}
|
|
if p.Flags.Has(8) {
|
|
if p.StoriesIosSound == nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_ios_sound is nil")
|
|
}
|
|
if err := p.StoriesIosSound.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_ios_sound: %w", err)
|
|
}
|
|
}
|
|
if p.Flags.Has(9) {
|
|
if p.StoriesAndroidSound == nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_android_sound is nil")
|
|
}
|
|
if err := p.StoriesAndroidSound.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_android_sound: %w", err)
|
|
}
|
|
}
|
|
if p.Flags.Has(10) {
|
|
if p.StoriesOtherSound == nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_other_sound is nil")
|
|
}
|
|
if err := p.StoriesOtherSound.Encode(b); err != nil {
|
|
return fmt.Errorf("unable to encode peerNotifySettings#99622c0c: field stories_other_sound: %w", err)
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (p *PeerNotifySettings) Decode(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode peerNotifySettings#99622c0c to nil")
|
|
}
|
|
if err := b.ConsumeID(PeerNotifySettingsTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: %w", err)
|
|
}
|
|
return p.DecodeBare(b)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (p *PeerNotifySettings) DecodeBare(b *bin.Buffer) error {
|
|
if p == nil {
|
|
return fmt.Errorf("can't decode peerNotifySettings#99622c0c to nil")
|
|
}
|
|
{
|
|
if err := p.Flags.Decode(b); err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field flags: %w", err)
|
|
}
|
|
}
|
|
if p.Flags.Has(0) {
|
|
value, err := b.Bool()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field show_previews: %w", err)
|
|
}
|
|
p.ShowPreviews = value
|
|
}
|
|
if p.Flags.Has(1) {
|
|
value, err := b.Bool()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field silent: %w", err)
|
|
}
|
|
p.Silent = value
|
|
}
|
|
if p.Flags.Has(2) {
|
|
value, err := b.Int()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field mute_until: %w", err)
|
|
}
|
|
p.MuteUntil = value
|
|
}
|
|
if p.Flags.Has(3) {
|
|
value, err := DecodeNotificationSound(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field ios_sound: %w", err)
|
|
}
|
|
p.IosSound = value
|
|
}
|
|
if p.Flags.Has(4) {
|
|
value, err := DecodeNotificationSound(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field android_sound: %w", err)
|
|
}
|
|
p.AndroidSound = value
|
|
}
|
|
if p.Flags.Has(5) {
|
|
value, err := DecodeNotificationSound(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field other_sound: %w", err)
|
|
}
|
|
p.OtherSound = value
|
|
}
|
|
if p.Flags.Has(6) {
|
|
value, err := b.Bool()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_muted: %w", err)
|
|
}
|
|
p.StoriesMuted = value
|
|
}
|
|
if p.Flags.Has(7) {
|
|
value, err := b.Bool()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_hide_sender: %w", err)
|
|
}
|
|
p.StoriesHideSender = value
|
|
}
|
|
if p.Flags.Has(8) {
|
|
value, err := DecodeNotificationSound(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_ios_sound: %w", err)
|
|
}
|
|
p.StoriesIosSound = value
|
|
}
|
|
if p.Flags.Has(9) {
|
|
value, err := DecodeNotificationSound(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_android_sound: %w", err)
|
|
}
|
|
p.StoriesAndroidSound = value
|
|
}
|
|
if p.Flags.Has(10) {
|
|
value, err := DecodeNotificationSound(b)
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode peerNotifySettings#99622c0c: field stories_other_sound: %w", err)
|
|
}
|
|
p.StoriesOtherSound = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SetShowPreviews sets value of ShowPreviews conditional field.
|
|
func (p *PeerNotifySettings) SetShowPreviews(value bool) {
|
|
p.Flags.Set(0)
|
|
p.ShowPreviews = value
|
|
}
|
|
|
|
// GetShowPreviews returns value of ShowPreviews conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetShowPreviews() (value bool, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(0) {
|
|
return value, false
|
|
}
|
|
return p.ShowPreviews, true
|
|
}
|
|
|
|
// SetSilent sets value of Silent conditional field.
|
|
func (p *PeerNotifySettings) SetSilent(value bool) {
|
|
p.Flags.Set(1)
|
|
p.Silent = value
|
|
}
|
|
|
|
// GetSilent returns value of Silent conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetSilent() (value bool, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(1) {
|
|
return value, false
|
|
}
|
|
return p.Silent, true
|
|
}
|
|
|
|
// SetMuteUntil sets value of MuteUntil conditional field.
|
|
func (p *PeerNotifySettings) SetMuteUntil(value int) {
|
|
p.Flags.Set(2)
|
|
p.MuteUntil = value
|
|
}
|
|
|
|
// GetMuteUntil returns value of MuteUntil conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetMuteUntil() (value int, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(2) {
|
|
return value, false
|
|
}
|
|
return p.MuteUntil, true
|
|
}
|
|
|
|
// SetIosSound sets value of IosSound conditional field.
|
|
func (p *PeerNotifySettings) SetIosSound(value NotificationSoundClass) {
|
|
p.Flags.Set(3)
|
|
p.IosSound = value
|
|
}
|
|
|
|
// GetIosSound returns value of IosSound conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetIosSound() (value NotificationSoundClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(3) {
|
|
return value, false
|
|
}
|
|
return p.IosSound, true
|
|
}
|
|
|
|
// SetAndroidSound sets value of AndroidSound conditional field.
|
|
func (p *PeerNotifySettings) SetAndroidSound(value NotificationSoundClass) {
|
|
p.Flags.Set(4)
|
|
p.AndroidSound = value
|
|
}
|
|
|
|
// GetAndroidSound returns value of AndroidSound conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetAndroidSound() (value NotificationSoundClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(4) {
|
|
return value, false
|
|
}
|
|
return p.AndroidSound, true
|
|
}
|
|
|
|
// SetOtherSound sets value of OtherSound conditional field.
|
|
func (p *PeerNotifySettings) SetOtherSound(value NotificationSoundClass) {
|
|
p.Flags.Set(5)
|
|
p.OtherSound = value
|
|
}
|
|
|
|
// GetOtherSound returns value of OtherSound conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetOtherSound() (value NotificationSoundClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(5) {
|
|
return value, false
|
|
}
|
|
return p.OtherSound, true
|
|
}
|
|
|
|
// SetStoriesMuted sets value of StoriesMuted conditional field.
|
|
func (p *PeerNotifySettings) SetStoriesMuted(value bool) {
|
|
p.Flags.Set(6)
|
|
p.StoriesMuted = value
|
|
}
|
|
|
|
// GetStoriesMuted returns value of StoriesMuted conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetStoriesMuted() (value bool, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(6) {
|
|
return value, false
|
|
}
|
|
return p.StoriesMuted, true
|
|
}
|
|
|
|
// SetStoriesHideSender sets value of StoriesHideSender conditional field.
|
|
func (p *PeerNotifySettings) SetStoriesHideSender(value bool) {
|
|
p.Flags.Set(7)
|
|
p.StoriesHideSender = value
|
|
}
|
|
|
|
// GetStoriesHideSender returns value of StoriesHideSender conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetStoriesHideSender() (value bool, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(7) {
|
|
return value, false
|
|
}
|
|
return p.StoriesHideSender, true
|
|
}
|
|
|
|
// SetStoriesIosSound sets value of StoriesIosSound conditional field.
|
|
func (p *PeerNotifySettings) SetStoriesIosSound(value NotificationSoundClass) {
|
|
p.Flags.Set(8)
|
|
p.StoriesIosSound = value
|
|
}
|
|
|
|
// GetStoriesIosSound returns value of StoriesIosSound conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetStoriesIosSound() (value NotificationSoundClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(8) {
|
|
return value, false
|
|
}
|
|
return p.StoriesIosSound, true
|
|
}
|
|
|
|
// SetStoriesAndroidSound sets value of StoriesAndroidSound conditional field.
|
|
func (p *PeerNotifySettings) SetStoriesAndroidSound(value NotificationSoundClass) {
|
|
p.Flags.Set(9)
|
|
p.StoriesAndroidSound = value
|
|
}
|
|
|
|
// GetStoriesAndroidSound returns value of StoriesAndroidSound conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetStoriesAndroidSound() (value NotificationSoundClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(9) {
|
|
return value, false
|
|
}
|
|
return p.StoriesAndroidSound, true
|
|
}
|
|
|
|
// SetStoriesOtherSound sets value of StoriesOtherSound conditional field.
|
|
func (p *PeerNotifySettings) SetStoriesOtherSound(value NotificationSoundClass) {
|
|
p.Flags.Set(10)
|
|
p.StoriesOtherSound = value
|
|
}
|
|
|
|
// GetStoriesOtherSound returns value of StoriesOtherSound conditional field and
|
|
// boolean which is true if field was set.
|
|
func (p *PeerNotifySettings) GetStoriesOtherSound() (value NotificationSoundClass, ok bool) {
|
|
if p == nil {
|
|
return
|
|
}
|
|
if !p.Flags.Has(10) {
|
|
return value, false
|
|
}
|
|
return p.StoriesOtherSound, true
|
|
}
|