toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataSourceId = this.dataSourceId;
final displayName = this.displayName;
final fileInput = this.fileInput;
final input = this.input;
final localInventoryDataSource = this.localInventoryDataSource;
final merchantReviewDataSource = this.merchantReviewDataSource;
final name = this.name;
final primaryProductDataSource = this.primaryProductDataSource;
final productReviewDataSource = this.productReviewDataSource;
final promotionDataSource = this.promotionDataSource;
final regionalInventoryDataSource = this.regionalInventoryDataSource;
final supplementalProductDataSource = this.supplementalProductDataSource;
return {
'dataSourceId': ?dataSourceId,
'displayName': ?displayName,
'fileInput': ?fileInput,
'input': ?input,
'localInventoryDataSource': ?localInventoryDataSource,
'merchantReviewDataSource': ?merchantReviewDataSource,
'name': ?name,
'primaryProductDataSource': ?primaryProductDataSource,
'productReviewDataSource': ?productReviewDataSource,
'promotionDataSource': ?promotionDataSource,
'regionalInventoryDataSource': ?regionalInventoryDataSource,
'supplementalProductDataSource': ?supplementalProductDataSource,
};
}