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

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

package com.geotab.model.entity.diagnostic;

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

/**
 * A diagnostic for a Go Device fault.
 */
@Getter @Setter
@NoArgsConstructor
@SuperBuilder(builderMethodName = "goFaultDiagnosticBuilder")
public class GoFaultDiagnostic extends Diagnostic {

  {
    setDiagnosticType(DiagnosticType.GO_FAULT);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy