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

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

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

data class ScopeListview(
    val scopeUuid: String,
    val scopeAddr: String,
    val specName: String?,
    val specAddr: String,
    val lastUpdated: String,
    val isOwner: Boolean,
    val isDataAccess: Boolean,
    val isValueOwner: Boolean
)

data class ScopeDetail(
    val scopeUuid: String,
    val scopeAddr: String,
    val specName: String?,
    val specAddr: String,
    val description: SpecDescrip?,
    val owners: List,
    val dataAccess: List,
    val valueOwner: String?,
    val attributes: List
)

data class SpecDescrip(
    val name: String,
    val description: String,
    val websiteUrl: String,
    val iconUrl: String
)

data class PartyAndRole(
    val party: String?,
    val role: String
)

enum class RecordStatus { UNFILLED, FILLED, NON_CONFORMING, ORPHAN }

data class ScopeRecord(
    val status: RecordStatus,
    val recordName: String,
    val specList: List?,
    val record: RecordDetail?
)

data class RecordDetail(
    val recordAddr: String,
    val recordSpecAddr: String,
    val lastModified: String,
    val responsibleParties: List,
    val outputs: List
)

data class RecordInputOutput(
    val name: String,
    val hash: String,
    val status: String
)

data class RecordSpecDetail(
    val contractSpecAddr: String,
    val recordSpecAddr: String,
    val responsibleParties: List
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy