copyWithWrapped method
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));
}