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); ///