CreditNoteCreateOptions constructor

const CreditNoteCreateOptions({
  1. int? amount,
  2. int? creditAmount,
  3. DateTime? effectiveAt,
  4. List<String>? expand,
  5. required String invoice,
  6. List<CreditNoteLinesItem>? lines,
  7. String? memo,
  8. Map<String, String>? metadata,
  9. int? outOfBandAmount,
  10. CreditNoteCreateOptionsReason? reason,
  11. String? refund,
  12. int? refundAmount,
  13. CreditNoteShippingCost? shippingCost,
})

Implementation

const CreditNoteCreateOptions({
  this.amount,
  this.creditAmount,
  this.effectiveAt,
  this.expand,
  required this.invoice,
  this.lines,
  this.memo,
  this.metadata,
  this.outOfBandAmount,
  this.reason,
  this.refund,
  this.refundAmount,
  this.shippingCost,
});