CouponCreateOptions constructor

const CouponCreateOptions({
  1. int? amountOff,
  2. CouponAppliesTo? appliesTo,
  3. String? currency,
  4. Map<String, CouponCurrencyOption>? currencyOptions,
  5. CouponDuration? duration,
  6. int? durationInMonths,
  7. List<String>? expand,
  8. String? id,
  9. int? maxRedemptions,
  10. Map<String, String>? metadata,
  11. String? name,
  12. double? percentOff,
  13. DateTime? redeemBy,
})

Implementation

const CouponCreateOptions({
  this.amountOff,
  this.appliesTo,
  this.currency,
  this.currencyOptions,
  this.duration,
  this.durationInMonths,
  this.expand,
  this.id,
  this.maxRedemptions,
  this.metadata,
  this.name,
  this.percentOff,
  this.redeemBy,
});