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

com.geotab.model.entity.fuel.FuelTaxAttributes Maven / Gradle / Ivy

package com.geotab.model.entity.fuel;

import lombok.Builder;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;

/**
 * Fuel tax attributes.
 */
@Getter @Setter
@NoArgsConstructor
public class FuelTaxAttributes {

  /**
   * A value indicating whether updates are available to this detail.
   */
  private Boolean updatesAvailable;

  /**
   * The road type.
   */
  private FuelTaxRoadType roadType;

  @Builder
  public FuelTaxAttributes(Boolean updatesAvailable,
      FuelTaxRoadType roadType) {
    this.updatesAvailable = updatesAvailable;
    this.roadType = roadType;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy