From 2f168b5d2c2d78726744a63b4b5b6951e0af03bc Mon Sep 17 00:00:00 2001 From: FeroxFoxxo Date: Sat, 5 Mar 2022 14:09:06 +1300 Subject: [PATCH] fix description on IGUILD for integration --- .../Entities/Guilds/IGuild.cs | 22 ++++++++++++------- 1 file changed, 14 insertions(+), 8 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Guilds/IGuild.cs b/src/Discord.Net.Core/Entities/Guilds/IGuild.cs index 85abeb912..738c5e9cc 100644 --- a/src/Discord.Net.Core/Entities/Guilds/IGuild.cs +++ b/src/Discord.Net.Core/Entities/Guilds/IGuild.cs @@ -719,19 +719,25 @@ namespace Discord Task> GetVoiceRegionsAsync(RequestOptions options = null); /// - /// + /// Gets a collection of all the integrations this guild contains. /// - /// - /// + /// The options to be used when sending the request. + /// + /// A task that represents the asynchronous get operation. The task result contains a read-only collection of + /// integrations the guild can has. + /// Task> GetIntegrationsAsync(RequestOptions options = null); /// - /// + /// Creates a new integration. /// - /// - /// - /// - /// + /// The id for the integration. + /// The type of integration. + /// The options to be used when sending the request. + /// + /// A task that represents the asynchronous creation operation. The task result contains the newly created + /// integration. + /// Task CreateIntegrationAsync(ulong id, string type, RequestOptions options = null); ///