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

io.github.eendroroy.sdk.bkash.definition.MerchantAssoc.kt Maven / Gradle / Ivy

The newest version!
package io.github.eendroroy.sdk.bkash.definition

/**
 * @author indrajit
 */
enum class MerchantAssoc {
    MI("Merchant Identifier"), MW("Merchant Wallet Number"), RF("Payment Reference");

    private val value: String
    private val description: String

    constructor(description: String) {
        value = name
        this.description = description
    }

    constructor(value: String, description: String) {
        this.value = value
        this.description = description
    }

    fun value(): String {
        return value
    }

    fun description(): String {
        return description
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy