copyWith method
Implementation
IncomeVerificationPaystubsGetRequest copyWith(
    {String? clientId,
    String? secret,
    String? incomeVerificationId,
    String? accessToken}) {
  return IncomeVerificationPaystubsGetRequest(
      clientId: clientId ?? this.clientId,
      secret: secret ?? this.secret,
      incomeVerificationId: incomeVerificationId ?? this.incomeVerificationId,
      accessToken: accessToken ?? this.accessToken);
}