toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (bids != null) 'bids': bids!.toJson(),
      if (bidsInAuction != null) 'bidsInAuction': bidsInAuction!.toJson(),
      if (billedImpressions != null)
        'billedImpressions': billedImpressions!.toJson(),
      if (impressionsWon != null) 'impressionsWon': impressionsWon!.toJson(),
      if (measurableImpressions != null)
        'measurableImpressions': measurableImpressions!.toJson(),
      if (reachedQueries != null) 'reachedQueries': reachedQueries!.toJson(),
      if (rowDimensions != null) 'rowDimensions': rowDimensions!.toJson(),
      if (viewableImpressions != null)
        'viewableImpressions': viewableImpressions!.toJson(),
    };