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

eleme.openapi.sdk.api.enumeration.cpc.WagerOpenStatus Maven / Gradle / Ivy

There is a newer version: 1.30.71
Show newest version
package eleme.openapi.sdk.api.enumeration.cpc;

public enum WagerOpenStatus {
    /**
     * WagerOpenStatus OPEN
     */
    OPEN("OPEN"), 
    
    /**
     * WagerOpenStatus CLOSE
     */
    CLOSE("CLOSE");
    

    private String cpcDesc;
    WagerOpenStatus(String cpcDesc) {
        this.cpcDesc = cpcDesc;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy