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

io.github.eendroroy.sdk.bkash.config.BkashConfiguration.kt Maven / Gradle / Ivy

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

/**
 * @author indrajit
 */
interface BkashConfiguration {
    // URL
    fun baseUrl(): String

    // Credentials
    fun username(): String
    fun password(): String
    fun appKey(): String
    fun appSecret(): String

    // Headers
    fun contentType(): String
    fun accept(): String

    // Http
    fun disableRootCaVerification(): Boolean
    fun timeOut(): Long
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy