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

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

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

/**
 * @author indrajit
 */
enum class TransactionStatus {
    Initiated,
    Pending_Authorized("Pending Authorized"),
    Authorized,
    Expired,
    Completed,
    Cancelled,
    Declined;

    private val value: String

    constructor() {
        value = name
    }

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

    fun value(): String {
        return value
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy