request/PinChatMessage pub fixes

This commit is contained in:
Mr-Andersen 2019-09-21 12:05:13 +03:00
parent b7e0a1c7d1
commit 02d9796667

View file

@ -11,9 +11,9 @@ pub struct PinChatMessage<'a> {
ctx: RequestContext<'a>, ctx: RequestContext<'a>,
/// Unique identifier for the target chat or username /// Unique identifier for the target chat or username
/// of the target supergroup or channel (in the format @channelusername) /// of the target supergroup or channel (in the format @channelusername)
chat_id: ChatId, pub chat_id: ChatId,
message_id: i32, pub message_id: i32,
disable_notification: bool pub disable_notification: bool
} }
impl<'a> PinChatMessage<'a> { impl<'a> PinChatMessage<'a> {