package tg
import (
"context"
"errors"
"fmt"
"sort"
"strings"
"go.uber.org/multierr"
"github.com/gotd/td/bin"
"github.com/gotd/td/tdjson"
"github.com/gotd/td/tdp"
"github.com/gotd/td/tgerr"
)
var (
_ = bin .Buffer {}
_ = context .Background ()
_ = fmt .Stringer (nil )
_ = strings .Builder {}
_ = errors .Is
_ = multierr .AppendInto
_ = sort .Ints
_ = tdp .Format
_ = tgerr .Error {}
_ = tdjson .Encoder {}
)
type AccountResetWebAuthorizationsRequest struct {
}
const AccountResetWebAuthorizationsRequestTypeID = 0x682d2594
var (
_ bin .Encoder = &AccountResetWebAuthorizationsRequest {}
_ bin .Decoder = &AccountResetWebAuthorizationsRequest {}
_ bin .BareEncoder = &AccountResetWebAuthorizationsRequest {}
_ bin .BareDecoder = &AccountResetWebAuthorizationsRequest {}
)
func (r *AccountResetWebAuthorizationsRequest ) Zero () bool {
if r == nil {
return true
}
return true
}
func (r *AccountResetWebAuthorizationsRequest ) String () string {
if r == nil {
return "AccountResetWebAuthorizationsRequest(nil)"
}
type Alias AccountResetWebAuthorizationsRequest
return fmt .Sprintf ("AccountResetWebAuthorizationsRequest%+v" , Alias (*r ))
}
func (*AccountResetWebAuthorizationsRequest ) TypeID () uint32 {
return AccountResetWebAuthorizationsRequestTypeID
}
func (*AccountResetWebAuthorizationsRequest ) TypeName () string {
return "account.resetWebAuthorizations"
}
func (r *AccountResetWebAuthorizationsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.resetWebAuthorizations" ,
ID : AccountResetWebAuthorizationsRequestTypeID ,
}
if r == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {}
return typ
}
func (r *AccountResetWebAuthorizationsRequest ) Encode (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't encode account.resetWebAuthorizations#682d2594 as nil" )
}
b .PutID (AccountResetWebAuthorizationsRequestTypeID )
return r .EncodeBare (b )
}
func (r *AccountResetWebAuthorizationsRequest ) EncodeBare (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't encode account.resetWebAuthorizations#682d2594 as nil" )
}
return nil
}
func (r *AccountResetWebAuthorizationsRequest ) Decode (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't decode account.resetWebAuthorizations#682d2594 to nil" )
}
if err := b .ConsumeID (AccountResetWebAuthorizationsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.resetWebAuthorizations#682d2594: %w" , err )
}
return r .DecodeBare (b )
}
func (r *AccountResetWebAuthorizationsRequest ) DecodeBare (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't decode account.resetWebAuthorizations#682d2594 to nil" )
}
return nil
}
func (c *Client ) AccountResetWebAuthorizations (ctx context .Context ) (bool , error ) {
var result BoolBox
request := &AccountResetWebAuthorizationsRequest {}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return false , err
}
_ , ok := result .Bool .(*BoolTrue )
return ok , nil
}
The pages are generated with Golds v0.6.7 . (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu .
PR and bug reports are welcome and can be submitted to the issue list .
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds .