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 AccountUpdateUsernameRequest struct {
Username string
}
const AccountUpdateUsernameRequestTypeID = 0x3e0bdd7c
var (
_ bin .Encoder = &AccountUpdateUsernameRequest {}
_ bin .Decoder = &AccountUpdateUsernameRequest {}
_ bin .BareEncoder = &AccountUpdateUsernameRequest {}
_ bin .BareDecoder = &AccountUpdateUsernameRequest {}
)
func (u *AccountUpdateUsernameRequest ) Zero () bool {
if u == nil {
return true
}
if !(u .Username == "" ) {
return false
}
return true
}
func (u *AccountUpdateUsernameRequest ) String () string {
if u == nil {
return "AccountUpdateUsernameRequest(nil)"
}
type Alias AccountUpdateUsernameRequest
return fmt .Sprintf ("AccountUpdateUsernameRequest%+v" , Alias (*u ))
}
func (u *AccountUpdateUsernameRequest ) FillFrom (from interface {
GetUsername () (value string )
}) {
u .Username = from .GetUsername ()
}
func (*AccountUpdateUsernameRequest ) TypeID () uint32 {
return AccountUpdateUsernameRequestTypeID
}
func (*AccountUpdateUsernameRequest ) TypeName () string {
return "account.updateUsername"
}
func (u *AccountUpdateUsernameRequest ) TypeInfo () tdp .Type {
typ := tdp .Type {
Name : "account.updateUsername" ,
ID : AccountUpdateUsernameRequestTypeID ,
}
if u == nil {
typ .Null = true
return typ
}
typ .Fields = []tdp .Field {
{
Name : "Username" ,
SchemaName : "username" ,
},
}
return typ
}
func (u *AccountUpdateUsernameRequest ) Encode (b *bin .Buffer ) error {
if u == nil {
return fmt .Errorf ("can't encode account.updateUsername#3e0bdd7c as nil" )
}
b .PutID (AccountUpdateUsernameRequestTypeID )
return u .EncodeBare (b )
}
func (u *AccountUpdateUsernameRequest ) EncodeBare (b *bin .Buffer ) error {
if u == nil {
return fmt .Errorf ("can't encode account.updateUsername#3e0bdd7c as nil" )
}
b .PutString (u .Username )
return nil
}
func (u *AccountUpdateUsernameRequest ) Decode (b *bin .Buffer ) error {
if u == nil {
return fmt .Errorf ("can't decode account.updateUsername#3e0bdd7c to nil" )
}
if err := b .ConsumeID (AccountUpdateUsernameRequestTypeID ); err != nil {
return fmt .Errorf ("unable to decode account.updateUsername#3e0bdd7c: %w" , err )
}
return u .DecodeBare (b )
}
func (u *AccountUpdateUsernameRequest ) DecodeBare (b *bin .Buffer ) error {
if u == nil {
return fmt .Errorf ("can't decode account.updateUsername#3e0bdd7c to nil" )
}
{
value , err := b .String ()
if err != nil {
return fmt .Errorf ("unable to decode account.updateUsername#3e0bdd7c: field username: %w" , err )
}
u .Username = value
}
return nil
}
func (u *AccountUpdateUsernameRequest ) GetUsername () (value string ) {
if u == nil {
return
}
return u .Username
}
func (c *Client ) AccountUpdateUsername (ctx context .Context , username string ) (UserClass , error ) {
var result UserBox
request := &AccountUpdateUsernameRequest {
Username : username ,
}
if err := c .rpc .Invoke (ctx , request , &result ); err != nil {
return nil , err
}
return result .User , 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 .