SegmentResponse constructor

SegmentResponse({
  1. required String applicationId,
  2. required String arn,
  3. required String creationDate,
  4. required String id,
  5. required SegmentType segmentType,
  6. SegmentDimensions? dimensions,
  7. SegmentImportResource? importDefinition,
  8. String? lastModifiedDate,
  9. String? name,
  10. SegmentGroupList? segmentGroups,
  11. int? version,
  12. Map<String, String>? tags,
})

Implementation

SegmentResponse({
  required this.applicationId,
  required this.arn,
  required this.creationDate,
  required this.id,
  required this.segmentType,
  this.dimensions,
  this.importDefinition,
  this.lastModifiedDate,
  this.name,
  this.segmentGroups,
  this.version,
  this.tags,
});