copyWithWrapped method
BankTransferEventListRequest
copyWithWrapped({
- Wrapped<
String?> ? clientId, - Wrapped<
String?> ? secret, - Wrapped<
DateTime?> ? startDate, - Wrapped<
DateTime?> ? endDate, - Wrapped<
String?> ? bankTransferId, - Wrapped<
String?> ? accountId, - Wrapped<
BankTransferEventListBankTransferType?> ? bankTransferType, - Wrapped<
List< ? eventTypes,BankTransferEventType> ?> - Wrapped<
int?> ? count, - Wrapped<
int?> ? offset, - Wrapped<
String?> ? originationAccountId, - Wrapped<
BankTransferEventListDirection?> ? direction,
Implementation
BankTransferEventListRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<DateTime?>? startDate,
Wrapped<DateTime?>? endDate,
Wrapped<String?>? bankTransferId,
Wrapped<String?>? accountId,
Wrapped<enums.BankTransferEventListBankTransferType?>? bankTransferType,
Wrapped<List<enums.BankTransferEventType>?>? eventTypes,
Wrapped<int?>? count,
Wrapped<int?>? offset,
Wrapped<String?>? originationAccountId,
Wrapped<enums.BankTransferEventListDirection?>? direction}) {
return BankTransferEventListRequest(
clientId: (clientId != null ? clientId.value : this.clientId),
secret: (secret != null ? secret.value : this.secret),
startDate: (startDate != null ? startDate.value : this.startDate),
endDate: (endDate != null ? endDate.value : this.endDate),
bankTransferId: (bankTransferId != null
? bankTransferId.value
: this.bankTransferId),
accountId: (accountId != null ? accountId.value : this.accountId),
bankTransferType: (bankTransferType != null
? bankTransferType.value
: this.bankTransferType),
eventTypes: (eventTypes != null ? eventTypes.value : this.eventTypes),
count: (count != null ? count.value : this.count),
offset: (offset != null ? offset.value : this.offset),
originationAccountId: (originationAccountId != null
? originationAccountId.value
: this.originationAccountId),
direction: (direction != null ? direction.value : this.direction));
}