CreatePaymentTransactionResponse constructor
const
CreatePaymentTransactionResponse({
- required int id,
- required int apiKeyConfigurationId,
- String? projectCode,
- String? currency,
- int? customerInformationId,
- String? customerInformationName,
- String? customerPayingPhoneNumber,
- String? customerPayingAccountNumber,
- String? customerPayingExpire,
- String? customerPayingCvv,
- DateTime? createdAt,
- int? createdBy,
- 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,
});