toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final brand = this.brand;
final brandInventoryStatus = this.brandInventoryStatus;
final categoryL1 = this.categoryL1;
final categoryL2 = this.categoryL2;
final categoryL3 = this.categoryL3;
final categoryL4 = this.categoryL4;
final categoryL5 = this.categoryL5;
final inventoryStatus = this.inventoryStatus;
final previousRank = this.previousRank;
final previousRelativeDemand = this.previousRelativeDemand;
final rank = this.rank;
final relativeDemand = this.relativeDemand;
final relativeDemandChange = this.relativeDemandChange;
final reportCategoryId = this.reportCategoryId;
final reportCountryCode = this.reportCountryCode;
final reportDate = this.reportDate;
final reportGranularity = this.reportGranularity;
final title = this.title;
final variantGtins = this.variantGtins;
return {
'brand': ?brand,
'brandInventoryStatus': ?brandInventoryStatus,
'categoryL1': ?categoryL1,
'categoryL2': ?categoryL2,
'categoryL3': ?categoryL3,
'categoryL4': ?categoryL4,
'categoryL5': ?categoryL5,
'inventoryStatus': ?inventoryStatus,
'previousRank': ?previousRank,
'previousRelativeDemand': ?previousRelativeDemand,
'rank': ?rank,
'relativeDemand': ?relativeDemand,
'relativeDemandChange': ?relativeDemandChange,
'reportCategoryId': ?reportCategoryId,
'reportCountryCode': ?reportCountryCode,
'reportDate': ?reportDate,
'reportGranularity': ?reportGranularity,
'title': ?title,
'variantGtins': ?variantGtins,
};
}