fix: add jsdoc comments

This commit is contained in:
StevanFreeborn
2023-02-08 23:42:19 -06:00
parent 58de996f1e
commit 3168a708bf
3 changed files with 22 additions and 0 deletions
+6
View File
@@ -307,6 +307,12 @@ export class OnspringClient {
return apiResponse;
}
/**
* @method getReportsByAppId - Gets a paged list of reports by the app id.
* @param {number} appId - The id of the app to get the reports for.
* @param {PagingRequest} pagingRequest - The paging request that will be used to get the reports.
* @returns {Promise<ApiResponse<GetPagedReportsResponse>>} - A promise that resolves to an ApiResponse of type GetPagedReportsResponse.
*/
public async getReportsByAppId(
appId: number,
pagingRequest: PagingRequest = new PagingRequest(1, 50)