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

io.provenance.explorer.model.NameModels.kt Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
package io.provenance.explorer.model

data class NameObj(
    val nameList: List,
    val owner: String,
    val restricted: Boolean,
    val fullName: String,
    val childCount: Int
)

data class NameMap(
    val segmentName: String,
    val children: MutableList,
    val fullName: String,
    var owner: String? = null,
    var restricted: Boolean = false
)

data class NameTreeResponse(
    val tree: MutableList,
    val depthCount: Int
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy