com.konduto.sdk.models.KondutoVehicleUsage 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
Easily integrate with Konduto (https://konduto.com), a fraud prevention service.
package com.konduto.sdk.models;
import com.google.gson.annotations.SerializedName;
/**
* Vehicle usage
* @see Konduto API Spec
*/
public enum KondutoVehicleUsage {
@SerializedName("private")
PRIVATE,
@SerializedName("commercial")
COMMERCIAL,
@SerializedName("instruction")
INSTRUCTION,
@SerializedName("experimental")
EXPERIMENTAL,
@SerializedName("government")
GOVERNMENT,
@SerializedName("military")
MILITARY
}