![JAR search and dependency download from the Maven repository](/logo.png)
com.geotab.model.entity.device.Go8 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Legacy Geotab Java SDK to be replaced by the NewGeneration API.
package com.geotab.model.entity.device;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.experimental.SuperBuilder;
/**
* The Geotab GO8 device. Additional properties can be seen in {@link GoCurveAuxiliary}.
*/
@Getter @Setter
@NoArgsConstructor
@SuperBuilder(builderMethodName = "go8Builder")
public class Go8 extends GoCurveAuxiliary {
{
setDeviceType(DeviceType.GO8);
}
@Override
public void populateDefaults() {
super.populateDefaults();
this.productId = GO8_PRODUCT_ID;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy