toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final items = this.items;
  final merchantFeedLabel = this.merchantFeedLabel;
  final merchantFeedLanguageCode = this.merchantFeedLanguageCode;
  final merchantId = this.merchantId;
  final transactionDiscount = this.transactionDiscount;
  return {
    'items': ?items,
    'merchantFeedLabel': ?merchantFeedLabel,
    'merchantFeedLanguageCode': ?merchantFeedLanguageCode,
    'merchantId': ?merchantId,
    'transactionDiscount': ?transactionDiscount,
  };
}