copyWith method
Implementation
WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponse copyWith(
{String? userId,
String? username,
String? email,
String? firstName,
String? lastName,
String? timezone,
WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponseErpIntegration?
erpIntegration,
String? boxedupEndpoint}) {
return WebApiModulesPluginsBoxedUpBoxedUpUpdateTokenResponse(
userId: userId ?? this.userId,
username: username ?? this.username,
email: email ?? this.email,
firstName: firstName ?? this.firstName,
lastName: lastName ?? this.lastName,
timezone: timezone ?? this.timezone,
erpIntegration: erpIntegration ?? this.erpIntegration,
boxedupEndpoint: boxedupEndpoint ?? this.boxedupEndpoint);
}