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

com.geotab.model.wifi.WifiUsageTier Maven / Gradle / Ivy

package com.geotab.model.wifi;

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

/**
 * Represents a specific usage tier for wifi hotspot rate plans.
 */
@Getter @Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class WifiUsageTier {

  /**
   * The name of this tier of wifi usage.
   */
  private String name;

  /**
   * The max usage limit, in units of kilobytes.
   */
  private Integer maxUsageKilobytes;

  /**
   * The dollar fee for this tier of wifi usage.
   */
  private Double fee;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy