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