* Delete the specified record. * * @param recordId The ID of the record. * @returns * * #### Description * Delete a record by recordId. * * Throws an error if the user does not have permission to delete the specified record. * * #### Example * ```js * async functi
(recordId: string)
| 503 | * ``` |
| 504 | */ |
| 505 | public async deleteRecordAsync(recordId: string) { |
| 506 | return await this.deleteRecordsAsync([recordId]); |
| 507 | } |
| 508 | |
| 509 | /** |
| 510 | * Delete the specified records. |
nothing calls this directly
no test coverage detected