Files
mautrix-telegram/pkg/gotd/tg/tl_account_content_settings_gen.go
T
2025-06-27 20:03:37 -07:00

228 lines
5.6 KiB
Go
Generated

// 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{}
)
// AccountContentSettings represents TL type `account.contentSettings#57e28221`.
// Sensitive content settings
//
// See https://core.telegram.org/constructor/account.contentSettings for reference.
type AccountContentSettings struct {
// Flags, see TL conditional fields¹
//
// Links:
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
Flags bin.Fields
// Whether viewing of sensitive (NSFW) content is enabled
SensitiveEnabled bool
// Whether the current client can change the sensitive content settings to view NSFW
// content
SensitiveCanChange bool
}
// AccountContentSettingsTypeID is TL type id of AccountContentSettings.
const AccountContentSettingsTypeID = 0x57e28221
// Ensuring interfaces in compile-time for AccountContentSettings.
var (
_ bin.Encoder = &AccountContentSettings{}
_ bin.Decoder = &AccountContentSettings{}
_ bin.BareEncoder = &AccountContentSettings{}
_ bin.BareDecoder = &AccountContentSettings{}
)
func (c *AccountContentSettings) Zero() bool {
if c == nil {
return true
}
if !(c.Flags.Zero()) {
return false
}
if !(c.SensitiveEnabled == false) {
return false
}
if !(c.SensitiveCanChange == false) {
return false
}
return true
}
// String implements fmt.Stringer.
func (c *AccountContentSettings) String() string {
if c == nil {
return "AccountContentSettings(nil)"
}
type Alias AccountContentSettings
return fmt.Sprintf("AccountContentSettings%+v", Alias(*c))
}
// FillFrom fills AccountContentSettings from given interface.
func (c *AccountContentSettings) FillFrom(from interface {
GetSensitiveEnabled() (value bool)
GetSensitiveCanChange() (value bool)
}) {
c.SensitiveEnabled = from.GetSensitiveEnabled()
c.SensitiveCanChange = from.GetSensitiveCanChange()
}
// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*AccountContentSettings) TypeID() uint32 {
return AccountContentSettingsTypeID
}
// TypeName returns name of type in TL schema.
func (*AccountContentSettings) TypeName() string {
return "account.contentSettings"
}
// TypeInfo returns info about TL type.
func (c *AccountContentSettings) TypeInfo() tdp.Type {
typ := tdp.Type{
Name: "account.contentSettings",
ID: AccountContentSettingsTypeID,
}
if c == nil {
typ.Null = true
return typ
}
typ.Fields = []tdp.Field{
{
Name: "SensitiveEnabled",
SchemaName: "sensitive_enabled",
Null: !c.Flags.Has(0),
},
{
Name: "SensitiveCanChange",
SchemaName: "sensitive_can_change",
Null: !c.Flags.Has(1),
},
}
return typ
}
// SetFlags sets flags for non-zero fields.
func (c *AccountContentSettings) SetFlags() {
if !(c.SensitiveEnabled == false) {
c.Flags.Set(0)
}
if !(c.SensitiveCanChange == false) {
c.Flags.Set(1)
}
}
// Encode implements bin.Encoder.
func (c *AccountContentSettings) Encode(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't encode account.contentSettings#57e28221 as nil")
}
b.PutID(AccountContentSettingsTypeID)
return c.EncodeBare(b)
}
// EncodeBare implements bin.BareEncoder.
func (c *AccountContentSettings) EncodeBare(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't encode account.contentSettings#57e28221 as nil")
}
c.SetFlags()
if err := c.Flags.Encode(b); err != nil {
return fmt.Errorf("unable to encode account.contentSettings#57e28221: field flags: %w", err)
}
return nil
}
// Decode implements bin.Decoder.
func (c *AccountContentSettings) Decode(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't decode account.contentSettings#57e28221 to nil")
}
if err := b.ConsumeID(AccountContentSettingsTypeID); err != nil {
return fmt.Errorf("unable to decode account.contentSettings#57e28221: %w", err)
}
return c.DecodeBare(b)
}
// DecodeBare implements bin.BareDecoder.
func (c *AccountContentSettings) DecodeBare(b *bin.Buffer) error {
if c == nil {
return fmt.Errorf("can't decode account.contentSettings#57e28221 to nil")
}
{
if err := c.Flags.Decode(b); err != nil {
return fmt.Errorf("unable to decode account.contentSettings#57e28221: field flags: %w", err)
}
}
c.SensitiveEnabled = c.Flags.Has(0)
c.SensitiveCanChange = c.Flags.Has(1)
return nil
}
// SetSensitiveEnabled sets value of SensitiveEnabled conditional field.
func (c *AccountContentSettings) SetSensitiveEnabled(value bool) {
if value {
c.Flags.Set(0)
c.SensitiveEnabled = true
} else {
c.Flags.Unset(0)
c.SensitiveEnabled = false
}
}
// GetSensitiveEnabled returns value of SensitiveEnabled conditional field.
func (c *AccountContentSettings) GetSensitiveEnabled() (value bool) {
if c == nil {
return
}
return c.Flags.Has(0)
}
// SetSensitiveCanChange sets value of SensitiveCanChange conditional field.
func (c *AccountContentSettings) SetSensitiveCanChange(value bool) {
if value {
c.Flags.Set(1)
c.SensitiveCanChange = true
} else {
c.Flags.Unset(1)
c.SensitiveCanChange = false
}
}
// GetSensitiveCanChange returns value of SensitiveCanChange conditional field.
func (c *AccountContentSettings) GetSensitiveCanChange() (value bool) {
if c == nil {
return
}
return c.Flags.Has(1)
}