All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.geotab.model.entity.diagnostic.DataDiagnostic Maven / Gradle / Ivy

package com.geotab.model.entity.diagnostic;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;

/**
 * A {@link Diagnostic} that represents measurement data from the vehicle (as opposed to fault codes).
 */
@Getter @Setter
@NoArgsConstructor
@SuperBuilder(builderMethodName = "dataDiagnosticBuilder")
public class DataDiagnostic extends Diagnostic {

  private Double conversion;
  private Integer dataLength;
  private Double offset;

  {
    setDiagnosticType(DiagnosticType.DATA_DIAGNOSTIC);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy