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

com.konduto.sdk.models.KondutoEventTicketCategory Maven / Gradle / Ivy

Go to download

Easily integrate with Konduto (https://konduto.com), a fraud prevention service.

There is a newer version: 2.17.4
Show newest version
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
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy