toJson method

Map<String, dynamic> toJson()

Implementation

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