chrome-devtools-kotlin / org.hildan.chrome.devtools.domains.page.events / PageEvent / DownloadProgressEvent

DownloadProgressEvent

data class DownloadProgressEvent : PageEvent

Constructors

<init>

DownloadProgressEvent(guid: String, totalBytes: Double, receivedBytes: Double, state: String)

Properties

guid

Global unique identifier of the download.

val guid: String

receivedBytes

Total bytes received.

val receivedBytes: Double

state

Download status.

val state: String

totalBytes

Total expected bytes to download.

val totalBytes: Double