toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advertiserId = this.advertiserId;
  final agencyId = this.agencyId;
  final availabilityTimestamp = this.availabilityTimestamp;
  final customerId = this.customerId;
  final segmentationId = this.segmentationId;
  final segmentationName = this.segmentationName;
  final segmentationType = this.segmentationType;
  return {
    'advertiserId': ?advertiserId,
    'agencyId': ?agencyId,
    'availabilityTimestamp': ?availabilityTimestamp,
    'customerId': ?customerId,
    'segmentationId': ?segmentationId,
    'segmentationName': ?segmentationName,
    'segmentationType': ?segmentationType,
  };
}