| @@ -719,19 +719,25 @@ namespace Discord | |||||
| Task<IReadOnlyCollection<IVoiceRegion>> GetVoiceRegionsAsync(RequestOptions options = null); | Task<IReadOnlyCollection<IVoiceRegion>> GetVoiceRegionsAsync(RequestOptions options = null); | ||||
| /// <summary> | /// <summary> | ||||
| /// | |||||
| /// Gets a collection of all the integrations this guild contains. | |||||
| /// </summary> | /// </summary> | ||||
| /// <param name="options"></param> | |||||
| /// <returns></returns> | |||||
| /// <param name="options">The options to be used when sending the request.</param> | |||||
| /// <returns> | |||||
| /// A task that represents the asynchronous get operation. The task result contains a read-only collection of | |||||
| /// integrations the guild can has. | |||||
| /// </returns> | |||||
| Task<IReadOnlyCollection<IIntegration>> GetIntegrationsAsync(RequestOptions options = null); | Task<IReadOnlyCollection<IIntegration>> GetIntegrationsAsync(RequestOptions options = null); | ||||
| /// <summary> | /// <summary> | ||||
| /// | |||||
| /// Creates a new integration. | |||||
| /// </summary> | /// </summary> | ||||
| /// <param name="id"></param> | |||||
| /// <param name="type"></param> | |||||
| /// <param name="options"></param> | |||||
| /// <returns></returns> | |||||
| /// <param name="id">The id for the integration.</param> | |||||
| /// <param name="type">The type of integration.</param> | |||||
| /// <param name="options">The options to be used when sending the request.</param> | |||||
| /// <returns> | |||||
| /// A task that represents the asynchronous creation operation. The task result contains the newly created | |||||
| /// integration. | |||||
| /// </returns> | |||||
| Task<IIntegration> CreateIntegrationAsync(ulong id, string type, RequestOptions options = null); | Task<IIntegration> CreateIntegrationAsync(ulong id, string type, RequestOptions options = null); | ||||
| /// <summary> | /// <summary> | ||||