CreatePayment constructor
CreatePayment({
- required String currency,
- required String beneficiaryId,
- required Decimal amount,
- required String reason,
- required String reference,
- String? paymentDate,
- PaymentType? paymentType = PaymentType.regular,
- String? conversionId,
- EntityType? payerEntityType,
- String? payerCompanyName,
- String? payerFirstName,
- String? payerLastName,
- String? payerCity,
- String? payerAddress,
- String? payerPostcode,
- String? payerStateOrProvince,
- String? payerCountry,
- String? payerDateOfBirth,
- IdentificationType? payerIdentificationType,
- String? payerIdentificationValue,
- String? uniqueRequestId,
- String? ultimateBeneficiaryName,
- String? onBehalfOf,
Implementation
CreatePayment({
required this.currency,
required this.beneficiaryId,
required this.amount,
required this.reason,
required this.reference,
this.paymentDate,
this.paymentType = PaymentType.regular,
this.conversionId,
this.payerEntityType,
this.payerCompanyName,
this.payerFirstName,
this.payerLastName,
this.payerCity,
this.payerAddress,
this.payerPostcode,
this.payerStateOrProvince,
this.payerCountry,
this.payerDateOfBirth,
this.payerIdentificationType,
this.payerIdentificationValue,
this.uniqueRequestId,
this.ultimateBeneficiaryName,
this.onBehalfOf,
});