toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final adGroupCriteriaCount = this.adGroupCriteriaCount;
  final campaignCriteriaCount = this.campaignCriteriaCount;
  final channelsCount = this.channelsCount;
  final negativeKeywordListsCount = this.negativeKeywordListsCount;
  final negativelyTargetedChannelsCount =
      this.negativelyTargetedChannelsCount;
  final usedCampaignsCount = this.usedCampaignsCount;
  final usedInsertionOrdersCount = this.usedInsertionOrdersCount;
  final usedLineItemsCount = this.usedLineItemsCount;
  return {
    'adGroupCriteriaCount': ?adGroupCriteriaCount,
    'campaignCriteriaCount': ?campaignCriteriaCount,
    'channelsCount': ?channelsCount,
    'negativeKeywordListsCount': ?negativeKeywordListsCount,
    'negativelyTargetedChannelsCount': ?negativelyTargetedChannelsCount,
    'usedCampaignsCount': ?usedCampaignsCount,
    'usedInsertionOrdersCount': ?usedInsertionOrdersCount,
    'usedLineItemsCount': ?usedLineItemsCount,
  };
}