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

io.github.eendroroy.sdk.bkash.response.BaseResponse.kt Maven / Gradle / Ivy

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

/**
 * @author indrajit
 */
abstract class BaseResponse {
    var httpResponseCode: Int = 200
    var httpResponseMessage: String = "OK"
    abstract fun httpResponseCode(httpResponseCode: Int): BaseResponse
    abstract fun httpResponseMessage(httpResponseMessage: String): BaseResponse
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy