toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final fixedBid = this.fixedBid;
  final maximizeSpendAutoBid = this.maximizeSpendAutoBid;
  final performanceGoalAutoBid = this.performanceGoalAutoBid;
  return {
    'fixedBid': ?fixedBid,
    'maximizeSpendAutoBid': ?maximizeSpendAutoBid,
    'performanceGoalAutoBid': ?performanceGoalAutoBid,
  };
}