com.konduto.sdk.models.KondutoEventTicketCategory 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;
/**
* Enum representing a event ticket category.
* For instance, if the ticket was bought by a student it will probably have a discount. The same applies to
* senior citizens.
*
* @see Konduto API Spec
*/
public enum KondutoEventTicketCategory {
@SerializedName("student")
STUDENT,
@SerializedName("senior")
SENIOR,
@SerializedName("government")
GOVERNMENT,
@SerializedName("social")
SOCIAL,
@SerializedName("regular")
REGULAR
}