BaseD2Progress

data class BaseD2Progress(val isComplete: Boolean, val totalCalls: Int? = null, val doneCalls: List<String> = emptyList()) : D2Progress

Constructors

Link copied to clipboard
constructor(isComplete: Boolean, totalCalls: Int? = null, doneCalls: List<String> = emptyList())

Types

Link copied to clipboard
class Builder(var isComplete: Boolean = false, var totalCalls: Int? = null, var doneCalls: List<String> = emptyList()) : D2Progress.Builder<BaseD2Progress.Builder>
Link copied to clipboard
object Companion

Properties

Link copied to clipboard
open override val doneCalls: List<String>
Link copied to clipboard
@get:JvmName(name = "getIsComplete")
open override val isComplete: Boolean
Link copied to clipboard
open override val totalCalls: Int? = null

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun totalCalls(): Int?