// Code generated by gotdgen, DO NOT EDIT.

package tg

import (
	
	
	
	
	

	

	
	
	
	
)

// 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{}
)

// AccountResetWallPapersRequest represents TL type `account.resetWallPapers#bb3b9804`.
// Delete all installed wallpapers¹, reverting to the default wallpaper set.
//
// Links:
//  1. https://core.telegram.org/api/wallpapers
//
// See https://core.telegram.org/method/account.resetWallPapers for reference.
type AccountResetWallPapersRequest struct {
}

// AccountResetWallPapersRequestTypeID is TL type id of AccountResetWallPapersRequest.
const AccountResetWallPapersRequestTypeID = 0xbb3b9804

// Ensuring interfaces in compile-time for AccountResetWallPapersRequest.
var (
	_ bin.Encoder     = &AccountResetWallPapersRequest{}
	_ bin.Decoder     = &AccountResetWallPapersRequest{}
	_ bin.BareEncoder = &AccountResetWallPapersRequest{}
	_ bin.BareDecoder = &AccountResetWallPapersRequest{}
)

func ( *AccountResetWallPapersRequest) () bool {
	if  == nil {
		return true
	}

	return true
}

// String implements fmt.Stringer.
func ( *AccountResetWallPapersRequest) () string {
	if  == nil {
		return "AccountResetWallPapersRequest(nil)"
	}
	type  AccountResetWallPapersRequest
	return fmt.Sprintf("AccountResetWallPapersRequest%+v", (*))
}

// TypeID returns type id in TL schema.
//
// See https://core.telegram.org/mtproto/TL-tl#remarks.
func (*AccountResetWallPapersRequest) () uint32 {
	return AccountResetWallPapersRequestTypeID
}

// TypeName returns name of type in TL schema.
func (*AccountResetWallPapersRequest) () string {
	return "account.resetWallPapers"
}

// TypeInfo returns info about TL type.
func ( *AccountResetWallPapersRequest) () tdp.Type {
	 := tdp.Type{
		Name: "account.resetWallPapers",
		ID:   AccountResetWallPapersRequestTypeID,
	}
	if  == nil {
		.Null = true
		return 
	}
	.Fields = []tdp.Field{}
	return 
}

// Encode implements bin.Encoder.
func ( *AccountResetWallPapersRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode account.resetWallPapers#bb3b9804 as nil")
	}
	.PutID(AccountResetWallPapersRequestTypeID)
	return .EncodeBare()
}

// EncodeBare implements bin.BareEncoder.
func ( *AccountResetWallPapersRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode account.resetWallPapers#bb3b9804 as nil")
	}
	return nil
}

// Decode implements bin.Decoder.
func ( *AccountResetWallPapersRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't decode account.resetWallPapers#bb3b9804 to nil")
	}
	if  := .ConsumeID(AccountResetWallPapersRequestTypeID);  != nil {
		return fmt.Errorf("unable to decode account.resetWallPapers#bb3b9804: %w", )
	}
	return .DecodeBare()
}

// DecodeBare implements bin.BareDecoder.
func ( *AccountResetWallPapersRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't decode account.resetWallPapers#bb3b9804 to nil")
	}
	return nil
}

// AccountResetWallPapers invokes method account.resetWallPapers#bb3b9804 returning error if any.
// Delete all installed wallpapers¹, reverting to the default wallpaper set.
//
// Links:
//  1. https://core.telegram.org/api/wallpapers
//
// See https://core.telegram.org/method/account.resetWallPapers for reference.
func ( *Client) ( context.Context) (bool, error) {
	var  BoolBox

	 := &AccountResetWallPapersRequest{}
	if  := .rpc.Invoke(, , &);  != nil {
		return false, 
	}
	,  := .Bool.(*BoolTrue)
	return , nil
}