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

com.deque.networking.models.devtools.serializable.AxeConf.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.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()
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy