deleteFilesIntegration method
DELETE /{version}/files/integrations/{Id}
Implementation
Future<Object?> deleteFilesIntegration(
{required Object id,
Map<String, Object?>? query,
Object? body,
Map<String, String>? headers}) {
return transport.send(
route: '/{version}/files/integrations/{Id}',
method: 'DELETE',
query: query,
body: body,
headers: headers,
pathParams: <String, Object?>{'Id': id},
);
}