PageType

@Serializable
enum PageType : Enum<PageType>

Page type values that represent different types of pages that may be present in an application.

Parameters

description

The canonical string representation for the page type.

Entries

Link copied to clipboard

The home page for the application.

Link copied to clipboard

A page listing a single product (sometimes with multiple sku variations).

Link copied to clipboard

A page containing a collection of products. Often, this is a page listing some category of products.

Link copied to clipboard

A page containing search results.

Link copied to clipboard

A page containing supporting blog content or articles.

Link copied to clipboard

The cart page for a store, listing the user's current cart contents, and often the entry point for a checkout.

Link copied to clipboard

The checkout page allowing a user to complete the checkout process.

Link copied to clipboard

Pages containing listings of flight options (intended for use by flight-booking applications).

Link copied to clipboard

Pages relating to the shopper's account.

Link copied to clipboard

The shopper login page.

Link copied to clipboard

Informational pages about the application (e.g. an "About" page).

Link copied to clipboard

Pages containing guidance information for shoppers.

Link copied to clipboard

Video content pages on the application.

Link copied to clipboard

All pages that do not fit into any of the other page types categories should be classified as OTHER.

Link copied to clipboard

The receipt page shown after completing the checkout process.

Link copied to clipboard

A page containing the customer's list of personally archived items.

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard

Functions

Link copied to clipboard
fun valueOf(value: String): PageType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.