diff --git a/src/models/OnspringClient.ts b/src/models/OnspringClient.ts index 55fcfdc..970398d 100644 --- a/src/models/OnspringClient.ts +++ b/src/models/OnspringClient.ts @@ -291,6 +291,12 @@ export class OnspringClient { return apiResponse.asListItemResponseType(); } + /** + * @method deleteListItemById - Deletes a list item by its id. + * @param {number} listId - The id of the list that the list item belongs to. + * @param {string} itemId - The id of the list item to delete. + * @returns {Promise>} - A promise that resolves to an ApiResponse of type any. + */ public async deleteListItemById( listId: number, itemId: string