removeLinks method
Implementation
Future<void> removeLinks(
int invoiceId, {
required Object authorization,
}) async {
final response = await _removeLinksWithHttpInfo(
invoiceId,
authorization: authorization,
);
if (response.statusCode >= HttpStatus.badRequest) {
throw ApiException(response.statusCode, await _decodeBodyBytes(response));
}
}