io.provenance.explorer.model.NameModels.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of explorer-api-model Show documentation
Show all versions of explorer-api-model Show documentation
API models used by the Provenance Explorer API
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
)