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