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

pl.wendigo.chrome.RequestFrame.kt Maven / Gradle / Ivy

There is a newer version: 0.7.4
Show newest version
package pl.wendigo.chrome

/**
 * Represents request frame.
 */
data class RequestFrame(
    /**
     * Request id, must be unique.
     */
    val id: Long,

    /**
     * Protocol method (domain.method_name i.e. Page.navigateTo)
     */
    val method: String,

    /**
     * Request params (if any)
     */
    val params: Any?
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy