copyWith method
Implementation
DealerNotificationSettingsUpdateV3Body copyWith(
{bool? sendShutdowns,
bool? sendWarnings,
bool? sendGeneratorRunningNotices,
bool? sendNotices,
bool? sendConnectionNotices,
bool? sendMaintenanceNotices,
bool? sendLongRunningNotices,
bool? sendNotificationEmails,
bool? createOnly}) {
return DealerNotificationSettingsUpdateV3Body(
sendShutdowns: sendShutdowns ?? this.sendShutdowns,
sendWarnings: sendWarnings ?? this.sendWarnings,
sendGeneratorRunningNotices:
sendGeneratorRunningNotices ?? this.sendGeneratorRunningNotices,
sendNotices: sendNotices ?? this.sendNotices,
sendConnectionNotices:
sendConnectionNotices ?? this.sendConnectionNotices,
sendMaintenanceNotices:
sendMaintenanceNotices ?? this.sendMaintenanceNotices,
sendLongRunningNotices:
sendLongRunningNotices ?? this.sendLongRunningNotices,
sendNotificationEmails:
sendNotificationEmails ?? this.sendNotificationEmails,
createOnly: createOnly ?? this.createOnly);
}