FormFieldTextsDTO

@Serializable
data class FormFieldTextsDTO(val label: String, val placeholderText: String?, val helpText: String?)

Constructors

Link copied to clipboard
constructor(label: String, placeholderText: String?, helpText: String?)

Properties

Link copied to clipboard

Generates a unique accessibility identifier for Appium automation Format: form_field_text_label

Link copied to clipboard
@SerialName(value = "help_text")
val helpText: String?
Link copied to clipboard
@SerialName(value = "label")
val label: String
Link copied to clipboard
@SerialName(value = "placeholder_text")
val placeholderText: String?