deleteTemplate method

Future<XRPCResponse<EmptyData>> deleteTemplate({
  1. required String id,
  2. Map<String, String>? $headers,
  3. Map<String, String>? $unknown,
})

Delete a communication template.

Implementation

Future<XRPCResponse<EmptyData>> deleteTemplate({
  required String id,
  Map<String, String>? $headers,
  Map<String, String>? $unknown,
}) async => await toolsOzoneCommunicationDeleteTemplate(
  id: id,
  $ctx: _ctx,
  $headers: $headers,
  $unknown: $unknown,
);