copyWith method
Implementation
BankTransferSweepListRequest copyWith(
{String? clientId,
String? secret,
String? originationAccountId,
DateTime? startTime,
DateTime? endTime,
int? count}) {
return BankTransferSweepListRequest(
clientId: clientId ?? this.clientId,
secret: secret ?? this.secret,
originationAccountId: originationAccountId ?? this.originationAccountId,
startTime: startTime ?? this.startTime,
endTime: endTime ?? this.endTime,
count: count ?? this.count);
}