Skip to content

Commit

Permalink
Added the parameter business_connection_id to the methods pinChatMess…
Browse files Browse the repository at this point in the history
…age and unpinChatMessage
  • Loading branch information
mircoianese committed Aug 1, 2024
1 parent dc795bc commit f8c5067
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@ public PinChatMessage(Object chatId, int messageId) {
public PinChatMessage disableNotification(boolean disableNotification) {
return add("disable_notification", disableNotification);
}
public PinChatMessage businessConnectionId(String businessConnectionId) {
return add("business_connection_id", businessConnectionId);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,8 @@ public UnpinChatMessage(Object chatId) {
public UnpinChatMessage messageId(Integer messageId) {
return add("message_id", messageId);
}

public UnpinChatMessage businessConnectionId(String businessConnectionId) {
return add("business_connection_id", businessConnectionId);
}
}

0 comments on commit f8c5067

Please sign in to comment.