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
283 lines
7.2 KiB
Go
283 lines
7.2 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{}
|
|
)
|
|
|
|
// BroadcastRevenueBalances represents TL type `broadcastRevenueBalances#c3ff71e7`.
|
|
// Describes channel ad revenue balances »¹.
|
|
// Note that all balances are in the smallest unit of the chosen cryptocurrency
|
|
// (currently nanotons for TONs, so to obtain a value in USD divide the chosen amount by
|
|
// 10^9, and then divide by usd_rate).
|
|
//
|
|
// Links:
|
|
// 1. https://core.telegram.org/api/revenue
|
|
//
|
|
// See https://core.telegram.org/constructor/broadcastRevenueBalances for reference.
|
|
type BroadcastRevenueBalances struct {
|
|
// Flags, see TL conditional fields¹
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/mtproto/TL-combinators#conditional-fields
|
|
Flags bin.Fields
|
|
// If set, the available balance can be withdrawn »¹.
|
|
//
|
|
// Links:
|
|
// 1) https://core.telegram.org/api/revenue#withdrawing-revenue
|
|
WithdrawalEnabled bool
|
|
// Amount of not-yet-withdrawn cryptocurrency.
|
|
CurrentBalance int64
|
|
// Amount of withdrawable cryptocurrency, out of the currently available balance
|
|
// (available_balance <= current_balance).
|
|
AvailableBalance int64
|
|
// Total amount of earned cryptocurrency.
|
|
OverallRevenue int64
|
|
}
|
|
|
|
// BroadcastRevenueBalancesTypeID is TL type id of BroadcastRevenueBalances.
|
|
const BroadcastRevenueBalancesTypeID = 0xc3ff71e7
|
|
|
|
// Ensuring interfaces in compile-time for BroadcastRevenueBalances.
|
|
var (
|
|
_ bin.Encoder = &BroadcastRevenueBalances{}
|
|
_ bin.Decoder = &BroadcastRevenueBalances{}
|
|
_ bin.BareEncoder = &BroadcastRevenueBalances{}
|
|
_ bin.BareDecoder = &BroadcastRevenueBalances{}
|
|
)
|
|
|
|
func (b *BroadcastRevenueBalances) Zero() bool {
|
|
if b == nil {
|
|
return true
|
|
}
|
|
if !(b.Flags.Zero()) {
|
|
return false
|
|
}
|
|
if !(b.WithdrawalEnabled == false) {
|
|
return false
|
|
}
|
|
if !(b.CurrentBalance == 0) {
|
|
return false
|
|
}
|
|
if !(b.AvailableBalance == 0) {
|
|
return false
|
|
}
|
|
if !(b.OverallRevenue == 0) {
|
|
return false
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
// String implements fmt.Stringer.
|
|
func (b *BroadcastRevenueBalances) String() string {
|
|
if b == nil {
|
|
return "BroadcastRevenueBalances(nil)"
|
|
}
|
|
type Alias BroadcastRevenueBalances
|
|
return fmt.Sprintf("BroadcastRevenueBalances%+v", Alias(*b))
|
|
}
|
|
|
|
// FillFrom fills BroadcastRevenueBalances from given interface.
|
|
func (b *BroadcastRevenueBalances) FillFrom(from interface {
|
|
GetWithdrawalEnabled() (value bool)
|
|
GetCurrentBalance() (value int64)
|
|
GetAvailableBalance() (value int64)
|
|
GetOverallRevenue() (value int64)
|
|
}) {
|
|
b.WithdrawalEnabled = from.GetWithdrawalEnabled()
|
|
b.CurrentBalance = from.GetCurrentBalance()
|
|
b.AvailableBalance = from.GetAvailableBalance()
|
|
b.OverallRevenue = from.GetOverallRevenue()
|
|
}
|
|
|
|
// TypeID returns type id in TL schema.
|
|
//
|
|
// See https://core.telegram.org/mtproto/TL-tl#remarks.
|
|
func (*BroadcastRevenueBalances) TypeID() uint32 {
|
|
return BroadcastRevenueBalancesTypeID
|
|
}
|
|
|
|
// TypeName returns name of type in TL schema.
|
|
func (*BroadcastRevenueBalances) TypeName() string {
|
|
return "broadcastRevenueBalances"
|
|
}
|
|
|
|
// TypeInfo returns info about TL type.
|
|
func (b *BroadcastRevenueBalances) TypeInfo() tdp.Type {
|
|
typ := tdp.Type{
|
|
Name: "broadcastRevenueBalances",
|
|
ID: BroadcastRevenueBalancesTypeID,
|
|
}
|
|
if b == nil {
|
|
typ.Null = true
|
|
return typ
|
|
}
|
|
typ.Fields = []tdp.Field{
|
|
{
|
|
Name: "WithdrawalEnabled",
|
|
SchemaName: "withdrawal_enabled",
|
|
Null: !b.Flags.Has(0),
|
|
},
|
|
{
|
|
Name: "CurrentBalance",
|
|
SchemaName: "current_balance",
|
|
},
|
|
{
|
|
Name: "AvailableBalance",
|
|
SchemaName: "available_balance",
|
|
},
|
|
{
|
|
Name: "OverallRevenue",
|
|
SchemaName: "overall_revenue",
|
|
},
|
|
}
|
|
return typ
|
|
}
|
|
|
|
// SetFlags sets flags for non-zero fields.
|
|
func (b *BroadcastRevenueBalances) SetFlags() {
|
|
if !(b.WithdrawalEnabled == false) {
|
|
b.Flags.Set(0)
|
|
}
|
|
}
|
|
|
|
// Encode implements bin.Encoder.
|
|
func (b *BroadcastRevenueBalances) Encode(buf *bin.Buffer) error {
|
|
if b == nil {
|
|
return fmt.Errorf("can't encode broadcastRevenueBalances#c3ff71e7 as nil")
|
|
}
|
|
buf.PutID(BroadcastRevenueBalancesTypeID)
|
|
return b.EncodeBare(buf)
|
|
}
|
|
|
|
// EncodeBare implements bin.BareEncoder.
|
|
func (b *BroadcastRevenueBalances) EncodeBare(buf *bin.Buffer) error {
|
|
if b == nil {
|
|
return fmt.Errorf("can't encode broadcastRevenueBalances#c3ff71e7 as nil")
|
|
}
|
|
b.SetFlags()
|
|
if err := b.Flags.Encode(buf); err != nil {
|
|
return fmt.Errorf("unable to encode broadcastRevenueBalances#c3ff71e7: field flags: %w", err)
|
|
}
|
|
buf.PutLong(b.CurrentBalance)
|
|
buf.PutLong(b.AvailableBalance)
|
|
buf.PutLong(b.OverallRevenue)
|
|
return nil
|
|
}
|
|
|
|
// Decode implements bin.Decoder.
|
|
func (b *BroadcastRevenueBalances) Decode(buf *bin.Buffer) error {
|
|
if b == nil {
|
|
return fmt.Errorf("can't decode broadcastRevenueBalances#c3ff71e7 to nil")
|
|
}
|
|
if err := buf.ConsumeID(BroadcastRevenueBalancesTypeID); err != nil {
|
|
return fmt.Errorf("unable to decode broadcastRevenueBalances#c3ff71e7: %w", err)
|
|
}
|
|
return b.DecodeBare(buf)
|
|
}
|
|
|
|
// DecodeBare implements bin.BareDecoder.
|
|
func (b *BroadcastRevenueBalances) DecodeBare(buf *bin.Buffer) error {
|
|
if b == nil {
|
|
return fmt.Errorf("can't decode broadcastRevenueBalances#c3ff71e7 to nil")
|
|
}
|
|
{
|
|
if err := b.Flags.Decode(buf); err != nil {
|
|
return fmt.Errorf("unable to decode broadcastRevenueBalances#c3ff71e7: field flags: %w", err)
|
|
}
|
|
}
|
|
b.WithdrawalEnabled = b.Flags.Has(0)
|
|
{
|
|
value, err := buf.Long()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode broadcastRevenueBalances#c3ff71e7: field current_balance: %w", err)
|
|
}
|
|
b.CurrentBalance = value
|
|
}
|
|
{
|
|
value, err := buf.Long()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode broadcastRevenueBalances#c3ff71e7: field available_balance: %w", err)
|
|
}
|
|
b.AvailableBalance = value
|
|
}
|
|
{
|
|
value, err := buf.Long()
|
|
if err != nil {
|
|
return fmt.Errorf("unable to decode broadcastRevenueBalances#c3ff71e7: field overall_revenue: %w", err)
|
|
}
|
|
b.OverallRevenue = value
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// SetWithdrawalEnabled sets value of WithdrawalEnabled conditional field.
|
|
func (b *BroadcastRevenueBalances) SetWithdrawalEnabled(value bool) {
|
|
if value {
|
|
b.Flags.Set(0)
|
|
b.WithdrawalEnabled = true
|
|
} else {
|
|
b.Flags.Unset(0)
|
|
b.WithdrawalEnabled = false
|
|
}
|
|
}
|
|
|
|
// GetWithdrawalEnabled returns value of WithdrawalEnabled conditional field.
|
|
func (b *BroadcastRevenueBalances) GetWithdrawalEnabled() (value bool) {
|
|
if b == nil {
|
|
return
|
|
}
|
|
return b.Flags.Has(0)
|
|
}
|
|
|
|
// GetCurrentBalance returns value of CurrentBalance field.
|
|
func (b *BroadcastRevenueBalances) GetCurrentBalance() (value int64) {
|
|
if b == nil {
|
|
return
|
|
}
|
|
return b.CurrentBalance
|
|
}
|
|
|
|
// GetAvailableBalance returns value of AvailableBalance field.
|
|
func (b *BroadcastRevenueBalances) GetAvailableBalance() (value int64) {
|
|
if b == nil {
|
|
return
|
|
}
|
|
return b.AvailableBalance
|
|
}
|
|
|
|
// GetOverallRevenue returns value of OverallRevenue field.
|
|
func (b *BroadcastRevenueBalances) GetOverallRevenue() (value int64) {
|
|
if b == nil {
|
|
return
|
|
}
|
|
return b.OverallRevenue
|
|
}
|