JourneyResponse constructor

JourneyResponse({
  1. required String applicationId,
  2. required String id,
  3. required String name,
  4. Map<String, Activity>? activities,
  5. String? creationDate,
  6. String? lastModifiedDate,
  7. JourneyLimits? limits,
  8. bool? localTime,
  9. QuietTime? quietTime,
  10. String? refreshFrequency,
  11. JourneySchedule? schedule,
  12. String? startActivity,
  13. StartCondition? startCondition,
  14. State? state,
  15. Map<String, String>? tags,
})

Implementation

JourneyResponse({
  required this.applicationId,
  required this.id,
  required this.name,
  this.activities,
  this.creationDate,
  this.lastModifiedDate,
  this.limits,
  this.localTime,
  this.quietTime,
  this.refreshFrequency,
  this.schedule,
  this.startActivity,
  this.startCondition,
  this.state,
  this.tags,
});