GranifyInlineViewLabel

@Serializable
data class GranifyInlineViewLabel(val name: String, val productId: String? = null, val sku: String? = null)

A label for a GranifyInlineView that identifies its location on the page.

Since

1.7.0

Parameters

name

The name of this label location. If there are multiple GranifyInlineViewLabel on the page, then this parameter should be unique per-product. (e.g. You can have the name "aboveProduct" in different labels as long as they each have different productId and/or sku fields)

productId

The ID of the associated product. Required when theGranifyInlineView is located on a product page, or on any page where it is associated with a specific product (e.g. inlines associated with a cart product).

sku

Field that is required when the associated GranifyInlineView is associated with a specific productId/sku combination. The productId must be specified if the sku is set.

Throws

If the sku is provided without a product ID.

Constructors

Link copied to clipboard
constructor(name: String, productId: String? = null, sku: String? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val productId: String? = null
Link copied to clipboard
val sku: String? = null

Functions

Link copied to clipboard
open operator override fun equals(other: Any?): Boolean