copyWithWrapped method
Implementation
SamplingSchedule copyWithWrapped(
{Wrapped<int?>? samplingScheduleType,
Wrapped<int?>? registerMapId,
Wrapped<int?>? intervalSeconds}) {
return SamplingSchedule(
samplingScheduleType: (samplingScheduleType != null
? samplingScheduleType.value
: this.samplingScheduleType),
registerMapId:
(registerMapId != null ? registerMapId.value : this.registerMapId),
intervalSeconds: (intervalSeconds != null
? intervalSeconds.value
: this.intervalSeconds));
}