io.api.bloxy.model.dto.dex.DexProtocol.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bloxy-api Show documentation
Show all versions of bloxy-api Show documentation
Kotlin & Java Library for all available Bloxy API endpoints
package io.api.bloxy.model.dto.dex
import com.beust.klaxon.Json
import io.api.bloxy.model.IModel
/**
* ! NO DESCRIPTION !
*
* @author GoodforGod
* @since 18.11.2018
*/
data class DexProtocol(
val protocol: String = "",
@Json(name = "smart_contracts") val smartContracts: Int = 0
) : IModel {
override fun isEmpty(): Boolean {
return smartContracts == 0 && protocol.isEmpty()
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy