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

// ChannelsEditPhotoRequest represents TL type `channels.editPhoto#f12e57c9`.
// Change the photo of a channel/supergroup¹
//
// Links:
//  1. https://core.telegram.org/api/channel
//
// See https://core.telegram.org/method/channels.editPhoto for reference.
type ChannelsEditPhotoRequest struct {
	// Channel/supergroup whose photo should be edited
	Channel InputChannelClass
	// New photo
	Photo InputChatPhotoClass
}

// ChannelsEditPhotoRequestTypeID is TL type id of ChannelsEditPhotoRequest.
const ChannelsEditPhotoRequestTypeID = 0xf12e57c9

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

func ( *ChannelsEditPhotoRequest) () bool {
	if  == nil {
		return true
	}
	if !(.Channel == nil) {
		return false
	}
	if !(.Photo == nil) {
		return false
	}

	return true
}

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

// FillFrom fills ChannelsEditPhotoRequest from given interface.
func ( *ChannelsEditPhotoRequest) ( interface {
	() ( InputChannelClass)
	() ( InputChatPhotoClass)
}) {
	.Channel = .()
	.Photo = .()
}

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

// TypeName returns name of type in TL schema.
func (*ChannelsEditPhotoRequest) () string {
	return "channels.editPhoto"
}

// TypeInfo returns info about TL type.
func ( *ChannelsEditPhotoRequest) () tdp.Type {
	 := tdp.Type{
		Name: "channels.editPhoto",
		ID:   ChannelsEditPhotoRequestTypeID,
	}
	if  == nil {
		.Null = true
		return 
	}
	.Fields = []tdp.Field{
		{
			Name:       "Channel",
			SchemaName: "channel",
		},
		{
			Name:       "Photo",
			SchemaName: "photo",
		},
	}
	return 
}

// Encode implements bin.Encoder.
func ( *ChannelsEditPhotoRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode channels.editPhoto#f12e57c9 as nil")
	}
	.PutID(ChannelsEditPhotoRequestTypeID)
	return .EncodeBare()
}

// EncodeBare implements bin.BareEncoder.
func ( *ChannelsEditPhotoRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't encode channels.editPhoto#f12e57c9 as nil")
	}
	if .Channel == nil {
		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field channel is nil")
	}
	if  := .Channel.Encode();  != nil {
		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field channel: %w", )
	}
	if .Photo == nil {
		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field photo is nil")
	}
	if  := .Photo.Encode();  != nil {
		return fmt.Errorf("unable to encode channels.editPhoto#f12e57c9: field photo: %w", )
	}
	return nil
}

// Decode implements bin.Decoder.
func ( *ChannelsEditPhotoRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't decode channels.editPhoto#f12e57c9 to nil")
	}
	if  := .ConsumeID(ChannelsEditPhotoRequestTypeID);  != nil {
		return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: %w", )
	}
	return .DecodeBare()
}

// DecodeBare implements bin.BareDecoder.
func ( *ChannelsEditPhotoRequest) ( *bin.Buffer) error {
	if  == nil {
		return fmt.Errorf("can't decode channels.editPhoto#f12e57c9 to nil")
	}
	{
		,  := DecodeInputChannel()
		if  != nil {
			return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: field channel: %w", )
		}
		.Channel = 
	}
	{
		,  := DecodeInputChatPhoto()
		if  != nil {
			return fmt.Errorf("unable to decode channels.editPhoto#f12e57c9: field photo: %w", )
		}
		.Photo = 
	}
	return nil
}

// GetChannel returns value of Channel field.
func ( *ChannelsEditPhotoRequest) () ( InputChannelClass) {
	if  == nil {
		return
	}
	return .Channel
}

// GetPhoto returns value of Photo field.
func ( *ChannelsEditPhotoRequest) () ( InputChatPhotoClass) {
	if  == nil {
		return
	}
	return .Photo
}

// GetChannelAsNotEmpty returns mapped value of Channel field.
func ( *ChannelsEditPhotoRequest) () (NotEmptyInputChannel, bool) {
	return .Channel.AsNotEmpty()
}

// ChannelsEditPhoto invokes method channels.editPhoto#f12e57c9 returning error if any.
// Change the photo of a channel/supergroup¹
//
// Links:
//  1. https://core.telegram.org/api/channel
//
// Possible errors:
//
//	400 CHANNEL_INVALID: The provided channel is invalid.
//	400 CHANNEL_PRIVATE: You haven't joined this channel/supergroup.
//	403 CHAT_ADMIN_REQUIRED: You must be an admin in this chat to do this.
//	400 CHAT_NOT_MODIFIED: No changes were made to chat information because the new information you passed is identical to the current information.
//	403 CHAT_WRITE_FORBIDDEN: You can't write in this chat.
//	400 FILE_PARTS_INVALID: The number of file parts is invalid.
//	400 FILE_REFERENCE_INVALID: The specified file reference is invalid.
//	400 PHOTO_CROP_SIZE_SMALL: Photo is too small.
//	400 PHOTO_EXT_INVALID: The extension of the photo is invalid.
//	400 PHOTO_INVALID: Photo invalid.
//	400 STICKER_MIME_INVALID: The specified sticker MIME type is invalid.
//
// See https://core.telegram.org/method/channels.editPhoto for reference.
// Can be used by bots.
func ( *Client) ( context.Context,  *ChannelsEditPhotoRequest) (UpdatesClass, error) {
	var  UpdatesBox

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