public interface

CheckoutExtension

com.usebutton.sdk.checkout.CheckoutExtension

Class Overview

This interface allows you to create a Checkout extension which allow dynamic customization of the checkout experience.

Summary

Public Methods
abstract void onClosed()
Called when the checkout experience is closed
abstract void onInitialized(CheckoutInterface checkout)
Called during the initialization of the Checkout experience
abstract void onNavigate(String uri, CheckoutInterface checkout)
Called during navigation events in the checkout experience

Public Methods

public abstract void onClosed ()

Called when the checkout experience is closed

public abstract void onInitialized (CheckoutInterface checkout)

Called during the initialization of the Checkout experience

Parameters
checkout An interface which allows you to customize the experience.

public abstract void onNavigate (String uri, CheckoutInterface checkout)

Called during navigation events in the checkout experience

Parameters
uri The uri the of the event. This can contain a web link or and Android URI
checkout An interface which allows you to customize the experience.