File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff 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 ) ;
You can’t perform that action at this time.
0 commit comments