toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final location = this.location;
  final maxCpcBidCeiling = this.maxCpcBidCeiling;
  final targetImpressionShareMicros = this.targetImpressionShareMicros;
  return {
    'location': ?location,
    'maxCpcBidCeiling': ?maxCpcBidCeiling,
    'targetImpressionShareMicros': ?targetImpressionShareMicros,
  };
}