getPushCampaignBatchNotifications method
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},
);
}