From 02d97966676bc3770285609202e1d3f905e4d4a9 Mon Sep 17 00:00:00 2001 From: Mr-Andersen Date: Sat, 21 Sep 2019 12:05:13 +0300 Subject: [PATCH] request/PinChatMessage pub fixes --- src/requests/pin_chat_message.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/requests/pin_chat_message.rs b/src/requests/pin_chat_message.rs index 6f5db2a6..8f8a955c 100644 --- a/src/requests/pin_chat_message.rs +++ b/src/requests/pin_chat_message.rs @@ -11,9 +11,9 @@ pub struct PinChatMessage<'a> { ctx: RequestContext<'a>, /// Unique identifier for the target chat or username /// of the target supergroup or channel (in the format @channelusername) - chat_id: ChatId, - message_id: i32, - disable_notification: bool + pub chat_id: ChatId, + pub message_id: i32, + pub disable_notification: bool } impl<'a> PinChatMessage<'a> {