Package-level declarations

Types

Link copied to clipboard
interface Carter

Defines callbacks that Granify can call to add a product to the cart.

Link copied to clipboard

Identifies a particular type of currency.

Link copied to clipboard
@Serializable
data class DiscountCode(val code: String, val amount: Price)

Represents an order discount code.

Link copied to clipboard

Valid display status values that may be reported when the Granify engine decides to show a message to a shopper.

Link copied to clipboard

Types of errors that may be reported by the Granify SDK.

Link copied to clipboard

Matching groups that a shopper may be assigned to.

Link copied to clipboard
interface Navigator

Defines callbacks that Granify can call to navigate to different pages within your application. These callbacks will be invoked when a user engages with the call-to-action on a Granify campaign.

Link copied to clipboard
data class Order @JvmOverloads constructor(val orderNumber: String, val lineItemsTotal: Price, val subtotal: Price, val totalTax: Price, val totalShipping: Price, val total: Price, val lineItems: HashMap<Product, Int>, val discountCodes: List<DiscountCode>, val financialStatus: String = defaultFinancialStatus, val currency: Currency = Currency.USD)

Represents an order placed on the site.

Link copied to clipboard
class PageIdentifier(val pageType: PageType, val path: String)

Contains information about a page's type and its unique path.

Link copied to clipboard
@Serializable
enum PageType : Enum<PageType>

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

Link copied to clipboard
@Serializable(with = PriceSerializer::class)
open class Price

Represents a non-negative monetary price value.

Link copied to clipboard
data class Product(val sku: String, val productId: String, val title: String, val price: Price, val regularPrice: Price, val image: URL? = null, val stock: ProductStock? = null, val reviews: ProductReviews? = null, val category: String? = null, val subCategory: String? = null, val color: String? = null, val size: String? = null, val childSiteOwnerId: SiteIdentifier? = null, val customProperties: Map<String, StringOrInt> = mapOf())

Represents a distinct product with basic identifiers, price, display information, and further optional detailed information.

Link copied to clipboard
open class ProductReviews

Contains product review and rating information.

Link copied to clipboard
data class ProductStock(val count: Int)

Contains product stock information.

Link copied to clipboard

States governing when a campaign is allowed to be shown to a shopper.

Link copied to clipboard
sealed class ScrollableView : Scrollable

A view that is scrollable.

Link copied to clipboard
@Serializable(with = SiteIdentifierSerializer::class)
class SiteIdentifier

Unique site identifier.

Link copied to clipboard
class SliderMargins(val left: Int, val top: Int, val right: Int, val bottom: Int) : Parcelable

Represents a collection of margins that dictate where a Granify campaign slider can be displayed.

Link copied to clipboard
@Serializable(with = StringOrIntSerializer::class)
sealed class StringOrInt

Discriminated union type for a String or Int for use in Product.customProperties.

Link copied to clipboard
@Serializable(with = WishListItemSerializer::class)
data class WishListItem(val productId: String, val inStock: Boolean, val sku: String? = null, val price: Price? = null, val regularPrice: Price? = null, val title: String? = null, val image: URL? = null, val dateAdded: Date? = null, val priceWhenAdded: Price? = null)

Represents a product within a wish list.