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

com.deque.networking.models.devtools.serializable.AxeResult.kt Maven / Gradle / Ivy

There is a newer version: 5.5.2
Show newest version
package com.deque.networking.models.devtools.serializable

import com.deque.networking.models.devtools.TagsSet

/**
 * A version of the AxeResult Structure that doesn't muck with the Accessibility Hierarchy.
 */
data class AxeResult (
    @JvmField
    var axeConf: AxeConf = AxeConf(),
    @JvmField
    var axeContext: AxeContext = AxeContext(),
    @JvmField
    var axeRuleResults: List = ArrayList(),
    @JvmField
    var userName: String = "",
    @JvmField
    var scanName: String = "",
    @JvmField
    var tags: TagsSet = setOf(),
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy