ButtonDataSDK

@Serializable
data class ButtonDataSDK(val id: String?, val buttonType: String?, val languageCode: String?, val label: String = "", val value: String?, val index: Int?, val createdAt: String?, val updatedAt: String?, val isActive: Boolean = true, val hideOutsideBusinessHours: Boolean?, val context: Map<String, Any>? = null)

Constructors

Link copied to clipboard
constructor(id: String?, buttonType: String?, languageCode: String?, label: String = "", value: String?, index: Int?, createdAt: String?, updatedAt: String?, isActive: Boolean = true, hideOutsideBusinessHours: Boolean?, context: Map<String, Any>? = null)

Properties

Link copied to clipboard

Generates a unique accessibility identifier for Appium automation Format: suggestion_button_id_label

Link copied to clipboard
@SerialName(value = "button_type")
val buttonType: String?
Link copied to clipboard
@SerialName(value = "context")
val context: Map<String, Any>?
Link copied to clipboard
@SerialName(value = "created_at")
val createdAt: String?
Link copied to clipboard
@SerialName(value = "hide_outside_business_hours")
val hideOutsideBusinessHours: Boolean?
Link copied to clipboard
@SerialName(value = "id")
val id: String?
Link copied to clipboard
@SerialName(value = "index")
val index: Int?
Link copied to clipboard
@SerialName(value = "is_active")
val isActive: Boolean
Link copied to clipboard
@SerialName(value = "label")
val label: String
Link copied to clipboard
@SerialName(value = "language_code")
val languageCode: String?
Link copied to clipboard
@SerialName(value = "updated_at")
val updatedAt: String?
Link copied to clipboard
@SerialName(value = "value")
val value: String?