DeleteAttachments method
Future<ServiceResponseCollection<DeleteAttachmentResponse> >
DeleteAttachments(
- Iterable<
Attachment?> attachments
Implementation
Future<ServiceResponseCollection<DeleteAttachmentResponse>> DeleteAttachments(
Iterable<Attachment?> attachments) {
DeleteAttachmentRequest request =
new DeleteAttachmentRequest(this, ServiceErrorHandling.ReturnErrors);
request.Attachments.addAll(attachments);
return request.Execute();
}