copyWith method
TransferEventListRequest
copyWith(
{ - String? clientId,
- String? secret,
- DateTime? startDate,
- DateTime? endDate,
- String? transferId,
- String? accountId,
- TransferEventListTransferType? transferType,
- List<TransferEventType>? eventTypes,
- String? sweepId,
- int? count,
- int? offset,
- String? originationAccountId,
- String? originatorClientId,
})
Implementation
TransferEventListRequest copyWith(
{String? clientId,
String? secret,
DateTime? startDate,
DateTime? endDate,
String? transferId,
String? accountId,
enums.TransferEventListTransferType? transferType,
List<enums.TransferEventType>? eventTypes,
String? sweepId,
int? count,
int? offset,
String? originationAccountId,
String? originatorClientId}) {
return TransferEventListRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate,
transferId: transferId ?? this.transferId,
accountId: accountId ?? this.accountId,
transferType: transferType ?? this.transferType,
eventTypes: eventTypes ?? this.eventTypes,
sweepId: sweepId ?? this.sweepId,
count: count ?? this.count,
offset: offset ?? this.offset,
originationAccountId: originationAccountId ?? this.originationAccountId,
originatorClientId: originatorClientId ?? this.originatorClientId);
}