Data constructor

Data({
  1. String? id,
  2. String? clientReferenceId,
  3. int? amount,
  4. String? currency,
  5. String? paymentMethod,
  6. NextAction? nextAction,
  7. String? status,
  8. Metadata? metadata,
  9. DateTime? createdAt,
  10. DateTime? expireAt,
})

Implementation

Data({
  this.id,
  this.clientReferenceId,
  this.amount,
  this.currency,
  this.paymentMethod,
  this.nextAction,
  this.status,
  this.metadata,
  this.createdAt,
  this.expireAt,
});