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

// BotsSetBotGroupDefaultAdminRightsRequest represents TL type `bots.setBotGroupDefaultAdminRights#925ec9ea`.
// Set the default suggested admin rights¹ for bots being added as admins to groups, see
// here for more info on how to handle them »².
//
// Links:
//  1. https://core.telegram.org/api/rights#suggested-bot-rights
//  2. https://core.telegram.org/api/rights#suggested-bot-rights
//
// See https://core.telegram.org/method/bots.setBotGroupDefaultAdminRights for reference.
type BotsSetBotGroupDefaultAdminRightsRequest struct {
	// Admin rights
	AdminRights ChatAdminRights
}

// BotsSetBotGroupDefaultAdminRightsRequestTypeID is TL type id of BotsSetBotGroupDefaultAdminRightsRequest.
const BotsSetBotGroupDefaultAdminRightsRequestTypeID = 0x925ec9ea

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

func ( *BotsSetBotGroupDefaultAdminRightsRequest) () bool {
	if  == nil {
		return true
	}
	if !(.AdminRights.Zero()) {
		return false
	}

	return true
}

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

// FillFrom fills BotsSetBotGroupDefaultAdminRightsRequest from given interface.
func ( *BotsSetBotGroupDefaultAdminRightsRequest) ( interface {
	() ( ChatAdminRights)
}) {
	.AdminRights = .()
}

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

// TypeName returns name of type in TL schema.
func (*BotsSetBotGroupDefaultAdminRightsRequest) () string {
	return "bots.setBotGroupDefaultAdminRights"
}

// TypeInfo returns info about TL type.
func ( *BotsSetBotGroupDefaultAdminRightsRequest) () tdp.Type {
	 := tdp.Type{
		Name: "bots.setBotGroupDefaultAdminRights",
		ID:   BotsSetBotGroupDefaultAdminRightsRequestTypeID,
	}
	if  == nil {
		.Null = true
		return 
	}
	.Fields = []tdp.Field{
		{
			Name:       "AdminRights",
			SchemaName: "admin_rights",
		},
	}
	return 
}

// Encode implements bin.Encoder.
func ( *BotsSetBotGroupDefaultAdminRightsRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode bots.setBotGroupDefaultAdminRights#925ec9ea as nil")
	}
	.PutID(BotsSetBotGroupDefaultAdminRightsRequestTypeID)
	return .EncodeBare()
}

// EncodeBare implements bin.BareEncoder.
func ( *BotsSetBotGroupDefaultAdminRightsRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode bots.setBotGroupDefaultAdminRights#925ec9ea as nil")
	}
	if  := .AdminRights.Encode();  != nil {
		return fmt.Errorf("unable to encode bots.setBotGroupDefaultAdminRights#925ec9ea: field admin_rights: %w", )
	}
	return nil
}

// Decode implements bin.Decoder.
func ( *BotsSetBotGroupDefaultAdminRightsRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't decode bots.setBotGroupDefaultAdminRights#925ec9ea to nil")
	}
	if  := .ConsumeID(BotsSetBotGroupDefaultAdminRightsRequestTypeID);  != nil {
		return fmt.Errorf("unable to decode bots.setBotGroupDefaultAdminRights#925ec9ea: %w", )
	}
	return .DecodeBare()
}

// DecodeBare implements bin.BareDecoder.
func ( *BotsSetBotGroupDefaultAdminRightsRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't decode bots.setBotGroupDefaultAdminRights#925ec9ea to nil")
	}
	{
		if  := .AdminRights.Decode();  != nil {
			return fmt.Errorf("unable to decode bots.setBotGroupDefaultAdminRights#925ec9ea: field admin_rights: %w", )
		}
	}
	return nil
}

// GetAdminRights returns value of AdminRights field.
func ( *BotsSetBotGroupDefaultAdminRightsRequest) () ( ChatAdminRights) {
	if  == nil {
		return
	}
	return .AdminRights
}

// BotsSetBotGroupDefaultAdminRights invokes method bots.setBotGroupDefaultAdminRights#925ec9ea returning error if any.
// Set the default suggested admin rights¹ for bots being added as admins to groups, see
// here for more info on how to handle them »².
//
// Links:
//  1. https://core.telegram.org/api/rights#suggested-bot-rights
//  2. https://core.telegram.org/api/rights#suggested-bot-rights
//
// Possible errors:
//
//	400 RIGHTS_NOT_MODIFIED: The new admin rights are equal to the old rights, no change was made.
//	400 USER_BOT_REQUIRED: This method can only be called by a bot.
//
// See https://core.telegram.org/method/bots.setBotGroupDefaultAdminRights for reference.
// Can be used by bots.
func ( *Client) ( context.Context,  ChatAdminRights) (bool, error) {
	var  BoolBox

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