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 AuthResetAuthorizationsRequest struct {
}
const AuthResetAuthorizationsRequestTypeID = 0x9fab0d1a
var (
_ bin .Encoder = &AuthResetAuthorizationsRequest {}
_ bin .Decoder = &AuthResetAuthorizationsRequest {}
_ bin .BareEncoder = &AuthResetAuthorizationsRequest {}
_ bin .BareDecoder = &AuthResetAuthorizationsRequest {}
)
func (r *AuthResetAuthorizationsRequest ) Zero () bool {
if r == nil {
return true
}
return true
}
func (r *AuthResetAuthorizationsRequest ) String () string {
if r == nil {
return "AuthResetAuthorizationsRequest(nil)"
}
type Alias AuthResetAuthorizationsRequest
return fmt .Sprintf ("AuthResetAuthorizationsRequest%+v" , Alias (*r ))
}
func (*AuthResetAuthorizationsRequest ) TypeID () uint32 {
return AuthResetAuthorizationsRequestTypeID
}
func (*AuthResetAuthorizationsRequest ) TypeName () string {
return "auth.resetAuthorizations"
}
func (r *AuthResetAuthorizationsRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "auth.resetAuthorizations" ,
ID : AuthResetAuthorizationsRequestTypeID ,
}
if r == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {}
return typ
}
func (r *AuthResetAuthorizationsRequest ) Encode (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't encode auth.resetAuthorizations#9fab0d1a as nil" )
}
b .PutID (AuthResetAuthorizationsRequestTypeID )
return r .EncodeBare (b )
}
func (r *AuthResetAuthorizationsRequest ) EncodeBare (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't encode auth.resetAuthorizations#9fab0d1a as nil" )
}
return nil
}
func (r *AuthResetAuthorizationsRequest ) Decode (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't decode auth.resetAuthorizations#9fab0d1a to nil" )
}
if err := b .ConsumeID (AuthResetAuthorizationsRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode auth.resetAuthorizations#9fab0d1a: %w" , err )
}
return r .DecodeBare (b )
}
func (r *AuthResetAuthorizationsRequest ) DecodeBare (b *bin .Buffer ) error {
if r == nil {
return fmt .Errorf ("can't decode auth.resetAuthorizations#9fab0d1a to nil" )
}
return nil
}
func (c *Client ) AuthResetAuthorizations (ctx context .Context ) (bool , error ) {
var result BoolBox
request := &AuthResetAuthorizationsRequest {}
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 .