CreatePaymentTransactionResponse constructor

const CreatePaymentTransactionResponse({
  1. required int id,
  2. required int apiKeyConfigurationId,
  3. String? projectCode,
  4. String? currency,
  5. int? customerInformationId,
  6. String? customerInformationName,
  7. String? customerPayingPhoneNumber,
  8. String? customerPayingAccountNumber,
  9. String? customerPayingExpire,
  10. String? customerPayingCvv,
  11. DateTime? createdAt,
  12. int? createdBy,
  13. required bool isDeleted,
})

Creates a parsed create-transaction response.

Implementation

const CreatePaymentTransactionResponse({
  required this.id,
  required this.apiKeyConfigurationId,
  this.projectCode,
  this.currency,
  this.customerInformationId,
  this.customerInformationName,
  this.customerPayingPhoneNumber,
  this.customerPayingAccountNumber,
  this.customerPayingExpire,
  this.customerPayingCvv,
  this.createdAt,
  this.createdBy,
  required this.isDeleted,
});