toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final biddableKeywords = this.biddableKeywords;
final maxCpcBidMicros = this.maxCpcBidMicros;
final negativeKeywords = this.negativeKeywords;
return {
'biddableKeywords': ?biddableKeywords,
'maxCpcBidMicros': ?maxCpcBidMicros,
'negativeKeywords': ?negativeKeywords,
};
}