toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final advertiserId = this.advertiserId;
  final displayName = this.displayName;
  final name = this.name;
  final negativeKeywordListId = this.negativeKeywordListId;
  final targetedLineItemCount = this.targetedLineItemCount;
  return {
    'advertiserId': ?advertiserId,
    'displayName': ?displayName,
    'name': ?name,
    'negativeKeywordListId': ?negativeKeywordListId,
    'targetedLineItemCount': ?targetedLineItemCount,
  };
}