com.deque.networking.analytics.AmplitudeEventProps.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-analytics Show documentation
Show all versions of axe-devtools-android-analytics Show documentation
The Axe Devtools Android Analytics Library
The newest version!
package com.deque.networking.analytics
data class AmplitudeEventProps(
val scan_time: Double? = null,
val scan_type: String? = null,
val scan_name: String? = null,
val tags: List? = null,
val rule_ids: List? = null,
val ignore_all_rules_by_view: Boolean? = null,
val ignore_all_rules_by_view_id: Boolean? = null,
val ignore_all_rules_by_class_name: Boolean? = null,
val views: List? = null,
val view_map: String? = null,
val class_names: List? = null,
val class_name_map: String? = null,
val view_ids: List? = null,
val view_id_map: String? = null,
val reason: String? = null,
val logs: List? = null,
val is_dialog: Boolean? = null,
)