toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final automatedDiscounts = this.automatedDiscounts;
final contentLanguage = this.contentLanguage;
final customAttributes = this.customAttributes;
final dataSource = this.dataSource;
final feedLabel = this.feedLabel;
final legacyLocal = this.legacyLocal;
final name = this.name;
final offerId = this.offerId;
final productAttributes = this.productAttributes;
final productStatus = this.productStatus;
final versionNumber = this.versionNumber;
return {
'automatedDiscounts': ?automatedDiscounts,
'contentLanguage': ?contentLanguage,
'customAttributes': ?customAttributes,
'dataSource': ?dataSource,
'feedLabel': ?feedLabel,
'legacyLocal': ?legacyLocal,
'name': ?name,
'offerId': ?offerId,
'productAttributes': ?productAttributes,
'productStatus': ?productStatus,
'versionNumber': ?versionNumber,
};
}