getPushCampaignBatchNotifications method

Future<Object?> getPushCampaignBatchNotifications({
  1. required Object id,
  2. required Object batchId,
  3. Map<String, Object?>? query,
  4. Map<String, String>? headers,
})

GET /{version}/notifications/push/campaigns/{id}/batches/{batchId}

Implementation

Future<Object?> getPushCampaignBatchNotifications(
    {required Object id,
    required Object batchId,
    Map<String, Object?>? query,
    Map<String, String>? headers}) {
  return transport.send(
    route: '/{version}/notifications/push/campaigns/{id}/batches/{batchId}',
    method: 'GET',
    query: query,
    headers: headers,
    pathParams: <String, Object?>{'id': id, 'batchId': batchId},
  );
}