DataScan_ExecutionStatus constructor

DataScan_ExecutionStatus({
  1. Timestamp? latestJobStartTime,
  2. Timestamp? latestJobEndTime,
})

Implementation

factory DataScan_ExecutionStatus({
  $2.Timestamp? latestJobStartTime,
  $2.Timestamp? latestJobEndTime,
}) {
  final $result = create();
  if (latestJobStartTime != null) {
    $result.latestJobStartTime = latestJobStartTime;
  }
  if (latestJobEndTime != null) {
    $result.latestJobEndTime = latestJobEndTime;
  }
  return $result;
}