toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cpcBidCeilingMicros = this.cpcBidCeilingMicros;
  final cpcBidFloorMicros = this.cpcBidFloorMicros;
  final targetRoas = this.targetRoas;
  final targetRoasTolerancePercentMillis =
      this.targetRoasTolerancePercentMillis;
  return {
    'cpcBidCeilingMicros': ?cpcBidCeilingMicros,
    'cpcBidFloorMicros': ?cpcBidFloorMicros,
    'targetRoas': ?targetRoas,
    'targetRoasTolerancePercentMillis': ?targetRoasTolerancePercentMillis,
  };
}