/// <inheritdoc /> public Task <IChatApiResponse <IUnpinChatResponse?> > UnpinChatAsync(IUnpinChatRequest unpinChat, IResponseSettings?responseSettings = null) => _connect.PostAsync <UnpinChatResponse, IUnpinChatResponse>(Resources.UnpinChat, unpinChat.Serialize(), responseSettings);
/// <inheritdoc /> public IChatApiResponse <IUnpinChatResponse?> UnpinChat(IUnpinChatRequest unpinChat, IResponseSettings?responseSettings = null) => _connect.Post <UnpinChatResponse>(Resources.UnpinChat, unpinChat.Serialize(), responseSettings);