ActivityResponse constructor

ActivityResponse({
  1. required String applicationId,
  2. required String campaignId,
  3. required String id,
  4. String? end,
  5. String? result,
  6. String? scheduledStart,
  7. String? start,
  8. String? state,
  9. int? successfulEndpointCount,
  10. int? timezonesCompletedCount,
  11. int? timezonesTotalCount,
  12. int? totalEndpointCount,
  13. String? treatmentId,
})

Implementation

ActivityResponse({
  required this.applicationId,
  required this.campaignId,
  required this.id,
  this.end,
  this.result,
  this.scheduledStart,
  this.start,
  this.state,
  this.successfulEndpointCount,
  this.timezonesCompletedCount,
  this.timezonesTotalCount,
  this.totalEndpointCount,
  this.treatmentId,
});