Skip to content

Commit

Permalink
EN-326 Fix comments of custom apps methods in IManagementClient
Browse files Browse the repository at this point in the history
  • Loading branch information
František Záhora authored and František Záhora committed Dec 4, 2024
1 parent abfa113 commit 4e4565b
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions Kontent.Ai.Management/IManagementClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -840,29 +840,28 @@ public interface IManagementClient
/// <summary>
/// Returns list of custom apps.
/// </summary>
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
/// <returns>The <see cref="IListingResponseModel{CustomAppModel}"/> instance that represents the listing of custom apps.</returns>
Task<IListingResponseModel<CustomAppModel>> ListCustomAppsAsync();

/// <summary>
/// Returns list of custom apps.
/// Returns the custom app.
/// </summary>
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
Task<CustomAppModel> GetCustomAppAsync(Reference identifier);

/// <summary>
/// Returns list of custom apps.
/// Creates the custom apps.
/// </summary>
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
Task<CustomAppModel> CreateCustomAppAsync(CustomAppCreateModel customApp);

/// <summary>
/// Returns list of custom apps.
/// Deletes the custom apps.
/// </summary>
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
Task DeleteCustomAppAsync(Reference identifier);

/// <summary>
/// Returns list of custom apps.
/// Modifies the custom apps.
/// </summary>
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
Task<CustomAppModel> ModifyCustomAppAsync(Reference identifier, IEnumerable<CustomAppOperationBaseModel> changes);
Expand Down

0 comments on commit 4e4565b

Please sign in to comment.