Skip to content

Commit 4e4565b

Browse files
František ZáhoraFrantišek Záhora
authored andcommitted
EN-326 Fix comments of custom apps methods in IManagementClient
1 parent abfa113 commit 4e4565b

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

Kontent.Ai.Management/IManagementClient.cs

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -840,29 +840,28 @@ public interface IManagementClient
840840
/// <summary>
841841
/// Returns list of custom apps.
842842
/// </summary>
843-
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
843+
/// <returns>The <see cref="IListingResponseModel{CustomAppModel}"/> instance that represents the listing of custom apps.</returns>
844844
Task<IListingResponseModel<CustomAppModel>> ListCustomAppsAsync();
845845

846846
/// <summary>
847-
/// Returns list of custom apps.
847+
/// Returns the custom app.
848848
/// </summary>
849849
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
850850
Task<CustomAppModel> GetCustomAppAsync(Reference identifier);
851851

852852
/// <summary>
853-
/// Returns list of custom apps.
853+
/// Creates the custom apps.
854854
/// </summary>
855855
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
856856
Task<CustomAppModel> CreateCustomAppAsync(CustomAppCreateModel customApp);
857857

858858
/// <summary>
859-
/// Returns list of custom apps.
859+
/// Deletes the custom apps.
860860
/// </summary>
861-
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
862861
Task DeleteCustomAppAsync(Reference identifier);
863862

864863
/// <summary>
865-
/// Returns list of custom apps.
864+
/// Modifies the custom apps.
866865
/// </summary>
867866
/// <returns>The <see cref="CustomAppModel"/> instance that represents the custom app.</returns>
868867
Task<CustomAppModel> ModifyCustomAppAsync(Reference identifier, IEnumerable<CustomAppOperationBaseModel> changes);

0 commit comments

Comments
 (0)