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

// AccountUpdateUsernameRequest represents TL type `account.updateUsername#3e0bdd7c`.
// Changes username for the current user.
//
// See https://core.telegram.org/method/account.updateUsername for reference.
type AccountUpdateUsernameRequest struct {
	// username or empty string if username is to be removedAccepted characters: a-z
	// (case-insensitive), 0-9 and underscores.Length: 5-32 characters.
	Username string
}

// AccountUpdateUsernameRequestTypeID is TL type id of AccountUpdateUsernameRequest.
const AccountUpdateUsernameRequestTypeID = 0x3e0bdd7c

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

func ( *AccountUpdateUsernameRequest) () bool {
	if  == nil {
		return true
	}
	if !(.Username == "") {
		return false
	}

	return true
}

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

// FillFrom fills AccountUpdateUsernameRequest from given interface.
func ( *AccountUpdateUsernameRequest) ( interface {
	() ( string)
}) {
	.Username = .()
}

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

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

// TypeInfo returns info about TL type.
func ( *AccountUpdateUsernameRequest) () tdp.Type {
	 := tdp.Type{
		Name: "account.updateUsername",
		ID:   AccountUpdateUsernameRequestTypeID,
	}
	if  == nil {
		.Null = true
		return 
	}
	.Fields = []tdp.Field{
		{
			Name:       "Username",
			SchemaName: "username",
		},
	}
	return 
}

// Encode implements bin.Encoder.
func ( *AccountUpdateUsernameRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode account.updateUsername#3e0bdd7c as nil")
	}
	.PutID(AccountUpdateUsernameRequestTypeID)
	return .EncodeBare()
}

// EncodeBare implements bin.BareEncoder.
func ( *AccountUpdateUsernameRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode account.updateUsername#3e0bdd7c as nil")
	}
	.PutString(.Username)
	return nil
}

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

// DecodeBare implements bin.BareDecoder.
func ( *AccountUpdateUsernameRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't decode account.updateUsername#3e0bdd7c to nil")
	}
	{
		,  := .String()
		if  != nil {
			return fmt.Errorf("unable to decode account.updateUsername#3e0bdd7c: field username: %w", )
		}
		.Username = 
	}
	return nil
}

// GetUsername returns value of Username field.
func ( *AccountUpdateUsernameRequest) () ( string) {
	if  == nil {
		return
	}
	return .Username
}

// AccountUpdateUsername invokes method account.updateUsername#3e0bdd7c returning error if any.
// Changes username for the current user.
//
// Possible errors:
//
//	400 USERNAME_INVALID: The provided username is not valid.
//	400 USERNAME_NOT_MODIFIED: The username was not modified.
//	400 USERNAME_OCCUPIED: The provided username is already occupied.
//	400 USERNAME_PURCHASE_AVAILABLE: The specified username can be purchased on https://fragment.com.
//
// See https://core.telegram.org/method/account.updateUsername for reference.
func ( *Client) ( context.Context,  string) (UserClass, error) {
	var  UserBox

	 := &AccountUpdateUsernameRequest{
		Username: ,
	}
	if  := .rpc.Invoke(, , &);  != nil {
		return nil, 
	}
	return .User, nil
}