use crate::api::enums::chat_uid::ChatUId;
use crate::api::structs::input_file::InputFile;
use serde::Serialize;
/// <https://core.telegram.org/bots/api#setchatphoto>
/// Use this method to set a new profile photo for the chat. Photos can't be changed for private chats. The bot must be an administrator in the chat for this to work and must have the appropriate administrator rights. Returns True on success.
#[derive(Debug, Serialize, Default)]
pub struct SetChatPhoto {
pub chat_id: ChatUId,
pub photo: InputFile,
}