com.deque.networking.models.devtools.serializable.AxeConf.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of axe-devtools-android-data Show documentation
Show all versions of axe-devtools-android-data Show documentation
The Axe Devtools Android Data Library
package com.deque.networking.models.devtools.serializable
import com.deque.axe.android.constants.AxeStandard
data class AxeConf(
/**
* A Set of AxeTypes to include in this AxeRun.
*/
@JvmField @AxeStandard val standards: Set = setOf(),
/**
* A set of AxeRules that will be included Regardless of any other setting.
*/
@JvmField val ruleIds: Set = setOf(),
@JvmField val rules: Map = mapOf(),
@JvmField val issueFilterConf: IssueFilterConf = IssueFilterConf(false),
@JvmField @Transient val customRules: Set> = setOf()
)