toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advertiserIds = this.advertiserIds;
  final displayName = this.displayName;
  final floodlightActivityId = this.floodlightActivityId;
  final floodlightGroupId = this.floodlightGroupId;
  final name = this.name;
  final remarketingConfigs = this.remarketingConfigs;
  final servingStatus = this.servingStatus;
  final sslRequired = this.sslRequired;
  return {
    'advertiserIds': ?advertiserIds,
    'displayName': ?displayName,
    'floodlightActivityId': ?floodlightActivityId,
    'floodlightGroupId': ?floodlightGroupId,
    'name': ?name,
    'remarketingConfigs': ?remarketingConfigs,
    'servingStatus': ?servingStatus,
    'sslRequired': ?sslRequired,
  };
}