copyWith method
Implementation
CreditBankIncomePDFGetRequest copyWith(
    {String? clientId, String? secret, String? userToken}) {
  return CreditBankIncomePDFGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      userToken: userToken ?? this.userToken);
}