Skip to main content
Primer Checkout iOS SDK is currently in beta (v3.0.0-beta.5). The API is subject to change before the stable release.
PrimerSelectionSession is the observable session that drives payment-method selection. It exposes the available methods, the current selection, search and filtering state, and vaulted-card actions (including CVV recapture) as a single @Published state value, and provides the methods that mutate that state. A single PrimerSelectionSession backs both PrimerPaymentMethods (the list of available methods) and PrimerVaultedPaymentMethods (saved methods). Both views resolve the same session from the environment supplied by the .primerCheckoutSession(_:) modifier, so you rarely construct or hold it yourself — you read it from the slots those views hand you.
PrimerSelectionSession is a @MainActor, ObservableObject final class available on iOS 15.0 and later (@available(iOS 15.0, *)). Observe it with @ObservedObject and call its methods from the main actor.

Declaration

The session is created and injected by the SDK. The slots of PrimerPaymentMethods and PrimerVaultedPaymentMethods receive it directly, so you do not initialize it yourself.

Properties

state is the snapshot you render from; vaultedPaymentMethods is the list of saved cards. Which card the SDK’s own screens act on is reflected back through state.selectedVaultedPaymentMethod. Keep the highlight in your own view state.

Methods

select(_:)

Selects a payment method to begin its payment flow. Call this from a method row’s tap handler. The selected method is reflected in state.selectedPaymentMethod.

cancel()

Cancels the in-progress selection flow.

selectVaulted(_:)

Pays with a saved payment method. This is the pay verb, so call it from your pay button rather than from a row tap. A card that needs CVV recapture raises the SDK’s CVV screen first, and that screen finishes the payment. The outcome arrives through .primerCheckoutSession(_:theme:onCompletion:). Keep which row looks selected in your own view state. Returns immediately; the payment runs on.
Before 3.0.0-beta.7 this method only marked a method as selected. It now starts a payment. A row tap wired to it will charge the customer.

delete(_:)

Deletes a saved payment method and refreshes vaultedPaymentMethods. Throws if the deletion fails, leaving the list unchanged.
Deletion is immediate — there is no confirmation step. Add your own if you want one. (The SDK’s own saved-methods screen, reached via showAll(), does confirm before it deletes.)

showAll()

Presents the SDK’s saved-payment-methods screen: the full list, where the customer can select a different method for payment or delete one. Works in both the managed PrimerCheckout modal and the inline integration.
PrimerVaultedPaymentMethods already wires this into its default header, so you only need to call it directly if you have replaced the header slot or built your own saved-methods UI.

PrimerPaymentMethodSelectionState

PrimerPaymentMethodSelectionState is the immutable snapshot published by state. It conforms to Equatable. Every stored property is public internal(set) — readable from your code but mutated only by the SDK, so treat it as read-only and call the session’s methods to change selection.

Properties

Because the state is Equatable, SwiftUI only re-renders observers when a meaningful field changes. Drive your custom rows and empty states directly from these properties rather than caching copies.

CheckoutPaymentMethod

paymentMethods and filteredPaymentMethods are arrays of CheckoutPaymentMethod, the model describing a single selectable method. It is documented in full on the PrimerPaymentMethods page; the key fields are id, type, name, icon, and the surcharge and styling properties.

Usage

Reading state and selecting a method

PrimerPaymentMethods hands each method slot a CheckoutPaymentMethod and an onSelect closure that calls select(_:) for you. To select outside a slot — for example from a custom header — call select(_:) on the session directly.

Working with vaulted methods and CVV recapture

When rendering saved methods, iterate vaultedPaymentMethods, keep the highlight in your own view state, and call selectVaulted(_:) from your pay button. A card that needs CVV recapture raises the SDK’s own CVV screen on submit, and that screen finishes the payment, so there is no CVV field to render and no CVV state to read.
Never mutate state directly — every property is internal(set). Change selection only through select(_:), selectVaulted(_:), delete(_:), showAll(), and cancel().

See also

PrimerPaymentMethods

The slot-based view that renders the available payment methods.

PrimerVaultedPaymentMethods

Render and select saved (vaulted) payment methods.

PaymentMethodsDefaults

Default slot bodies used by the payment-method views.

PrimerCheckoutSession

The top-level session injected via .primerCheckoutSession(_:).