toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final adGroupId = this.adGroupId;
  final cpcBidPointList = this.cpcBidPointList;
  final cpvBidPointList = this.cpvBidPointList;
  final endDate = this.endDate;
  final modificationMethod = this.modificationMethod;
  final resourceName = this.resourceName;
  final startDate = this.startDate;
  final targetCpaPointList = this.targetCpaPointList;
  final targetRoasPointList = this.targetRoasPointList;
  final type = this.type;
  return {
    'adGroupId': ?adGroupId,
    'cpcBidPointList': ?cpcBidPointList,
    'cpvBidPointList': ?cpvBidPointList,
    'endDate': ?endDate,
    'modificationMethod': ?modificationMethod,
    'resourceName': ?resourceName,
    'startDate': ?startDate,
    'targetCpaPointList': ?targetCpaPointList,
    'targetRoasPointList': ?targetRoasPointList,
    'type': ?type,
  };
}