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