toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final biddingStrategyId = this.biddingStrategyId;
  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 {
    'biddingStrategyId': ?biddingStrategyId,
    'endDate': ?endDate,
    'modificationMethod': ?modificationMethod,
    'resourceName': ?resourceName,
    'startDate': ?startDate,
    'targetCpaPointList': ?targetCpaPointList,
    'targetRoasPointList': ?targetRoasPointList,
    'type': ?type,
  };
}