copyWithWrapped method
TransferEventListRequest
copyWithWrapped({
- Wrapped<
String?> ? clientId, - Wrapped<
String?> ? secret, - Wrapped<
DateTime?> ? startDate, - Wrapped<
DateTime?> ? endDate, - Wrapped<
String?> ? transferId, - Wrapped<
String?> ? accountId, - Wrapped<
TransferEventListTransferType?> ? transferType, - Wrapped<
List< ? eventTypes,TransferEventType> ?> - Wrapped<
String?> ? sweepId, - Wrapped<
int?> ? count, - Wrapped<
int?> ? offset, - Wrapped<
String?> ? originationAccountId, - Wrapped<
String?> ? originatorClientId,
Implementation
TransferEventListRequest copyWithWrapped(
{Wrapped<String?>? clientId,
Wrapped<String?>? secret,
Wrapped<DateTime?>? startDate,
Wrapped<DateTime?>? endDate,
Wrapped<String?>? transferId,
Wrapped<String?>? accountId,
Wrapped<enums.TransferEventListTransferType?>? transferType,
Wrapped<List<enums.TransferEventType>?>? eventTypes,
Wrapped<String?>? sweepId,
Wrapped<int?>? count,
Wrapped<int?>? offset,
Wrapped<String?>? originationAccountId,
Wrapped<String?>? originatorClientId}) {
return TransferEventListRequest(
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),
transferId: (transferId != null ? transferId.value : this.transferId),
accountId: (accountId != null ? accountId.value : this.accountId),
transferType:
(transferType != null ? transferType.value : this.transferType),
eventTypes: (eventTypes != null ? eventTypes.value : this.eventTypes),
sweepId: (sweepId != null ? sweepId.value : this.sweepId),
count: (count != null ? count.value : this.count),
offset: (offset != null ? offset.value : this.offset),
originationAccountId: (originationAccountId != null
? originationAccountId.value
: this.originationAccountId),
originatorClientId: (originatorClientId != null
? originatorClientId.value
: this.originatorClientId));
}