toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final customBiddingAlgorithmId = this.customBiddingAlgorithmId;
  final maxAverageCpmBidAmountMicros = this.maxAverageCpmBidAmountMicros;
  final performanceGoalAmountMicros = this.performanceGoalAmountMicros;
  final performanceGoalType = this.performanceGoalType;
  return {
    'customBiddingAlgorithmId': ?customBiddingAlgorithmId,
    'maxAverageCpmBidAmountMicros': ?maxAverageCpmBidAmountMicros,
    'performanceGoalAmountMicros': ?performanceGoalAmountMicros,
    'performanceGoalType': ?performanceGoalType,
  };
}