toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final effectiveness = this.effectiveness;
  final predictedClicksChangeFraction = this.predictedClicksChangeFraction;
  final predictedConversionsChangeFraction =
      this.predictedConversionsChangeFraction;
  final predictedGrossProfitChangeFraction =
      this.predictedGrossProfitChangeFraction;
  final predictedImpressionsChangeFraction =
      this.predictedImpressionsChangeFraction;
  final predictedMonthlyGrossProfitChangeCurrencyCode =
      this.predictedMonthlyGrossProfitChangeCurrencyCode;
  final predictedMonthlyGrossProfitChangeMicros =
      this.predictedMonthlyGrossProfitChangeMicros;
  final suggestedPriceCurrencyCode = this.suggestedPriceCurrencyCode;
  final suggestedPriceMicros = this.suggestedPriceMicros;
  return {
    'effectiveness': ?effectiveness,
    'predictedClicksChangeFraction': ?predictedClicksChangeFraction,
    'predictedConversionsChangeFraction': ?predictedConversionsChangeFraction,
    'predictedGrossProfitChangeFraction': ?predictedGrossProfitChangeFraction,
    'predictedImpressionsChangeFraction': ?predictedImpressionsChangeFraction,
    'predictedMonthlyGrossProfitChangeCurrencyCode':
        ?predictedMonthlyGrossProfitChangeCurrencyCode,
    'predictedMonthlyGrossProfitChangeMicros':
        ?predictedMonthlyGrossProfitChangeMicros,
    'suggestedPriceCurrencyCode': ?suggestedPriceCurrencyCode,
    'suggestedPriceMicros': ?suggestedPriceMicros,
  };
}