AuthenticationRequest.BodyContent.VerticalList


class AuthenticationRequest.BodyContent.VerticalList : AuthenticationRequest.BodyContent


A vertical list as body content.

Compatibility Note: This content type is only supported starting from Build.VERSION_CODES.VANILLA_ICE_CREAM (API 35). On devices running earlier versions of Android, this content will be ignored and will not be displayed.

Summary

Public constructors

VerticalList(description: String?, items: List<PromptContentItem>)

Public properties

String?

The description of this list.

List<PromptContentItem>

The PromptContentItem to display on the list.

Public constructors

VerticalList

VerticalList(
    description: String? = null,
    items: List<PromptContentItem> = listOf()
)

Public properties

description

Added in 1.4.0-alpha06
val descriptionString?

The description of this list.

items

Added in 1.4.0-alpha06
val itemsList<PromptContentItem>

The PromptContentItem to display on the list.