copyWithWrapped method

CreditPayrollIncomeRefreshResponse copyWithWrapped({
  1. Wrapped<String>? requestId,
  2. Wrapped<String>? verificationRefreshStatus,
})

Implementation

CreditPayrollIncomeRefreshResponse copyWithWrapped(
    {Wrapped<String>? requestId,
    Wrapped<String>? verificationRefreshStatus}) {
  return CreditPayrollIncomeRefreshResponse(
      requestId: (requestId != null ? requestId.value : this.requestId),
      verificationRefreshStatus: (verificationRefreshStatus != null
          ? verificationRefreshStatus.value
          : this.verificationRefreshStatus));
}