toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final brand = this.brand;
final categoryL1 = this.categoryL1;
final categoryL2 = this.categoryL2;
final categoryL3 = this.categoryL3;
final categoryL4 = this.categoryL4;
final categoryL5 = this.categoryL5;
final effectiveness = this.effectiveness;
final id = this.id;
final offerId = this.offerId;
final predictedClicksChangeFraction = this.predictedClicksChangeFraction;
final predictedConversionsChangeFraction =
this.predictedConversionsChangeFraction;
final predictedImpressionsChangeFraction =
this.predictedImpressionsChangeFraction;
final price = this.price;
final productTypeL1 = this.productTypeL1;
final productTypeL2 = this.productTypeL2;
final productTypeL3 = this.productTypeL3;
final productTypeL4 = this.productTypeL4;
final productTypeL5 = this.productTypeL5;
final suggestedPrice = this.suggestedPrice;
final title = this.title;
return {
'brand': ?brand,
'categoryL1': ?categoryL1,
'categoryL2': ?categoryL2,
'categoryL3': ?categoryL3,
'categoryL4': ?categoryL4,
'categoryL5': ?categoryL5,
'effectiveness': ?effectiveness,
'id': ?id,
'offerId': ?offerId,
'predictedClicksChangeFraction': ?predictedClicksChangeFraction,
'predictedConversionsChangeFraction': ?predictedConversionsChangeFraction,
'predictedImpressionsChangeFraction': ?predictedImpressionsChangeFraction,
'price': ?price,
'productTypeL1': ?productTypeL1,
'productTypeL2': ?productTypeL2,
'productTypeL3': ?productTypeL3,
'productTypeL4': ?productTypeL4,
'productTypeL5': ?productTypeL5,
'suggestedPrice': ?suggestedPrice,
'title': ?title,
};
}