toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final pointsCouponValue = this.pointsCouponValue;
  final pointsDiscountRateMicros = this.pointsDiscountRateMicros;
  final pointsOfferId = this.pointsOfferId;
  final pointsSpent = this.pointsSpent;
  return {
    'pointsCouponValue': ?pointsCouponValue,
    'pointsDiscountRateMicros': ?pointsDiscountRateMicros,
    'pointsOfferId': ?pointsOfferId,
    'pointsSpent': ?pointsSpent,
  };
}