PrimerCheckoutSession is the owner of a CheckoutComponents session. You hold it (typically as a @StateObject) and wire it into your SwiftUI view hierarchy with the .primerCheckoutSession(_:onCompletion:) modifier. The session builds the SDK, runs client-token initialization, creates the checkout scope, and bridges per-method scopes into observable session objects that the composable views (such as PrimerCardForm and PrimerPaymentMethods) consume from the environment.
The same session powers both the managed modal PrimerCheckout and fully inline embedding: any Primer composable view placed under the modifier resolves its session from the environment. Overlay screens for 3DS challenges and redirect flows are rendered automatically while the session is .ready.
This is the iOS analog of the Android
PrimerCheckoutHost. Where Android wraps your layout in a composable host, iOS wires the session into the environment with a view modifier — child composable views read their per-feature session from EnvironmentValues.Declaration
Initializer
Phase
The lifecycle phase of the session. Terminal outcomes (success, failure, dismissed) are not delivered here — they are delivered through the modifier’sonCompletion.
Published properties
Properties
onBeforePaymentCreate uses the BeforePaymentCreateHandler type:onBeforePaymentCreate, the declarative idempotencyKey provider is ignored — use the decision handler to supply the key instead.Methods
View modifier
TheView.primerCheckoutSession(_:onCompletion:) modifier wires a PrimerCheckoutSession into the SwiftUI environment, bootstraps it on appear, and tears it down on disappear. Apply it once around any Primer composable views — whether presented modally via PrimerCheckout or embedded inline in your own layout.
What the modifier provides
- Environment injection — exposes the
PrimerCheckoutSession, the derivedPrimerCardFormSession, and thePrimerSelectionSessionthroughEnvironmentValues, so child views likePrimerCardFormandPrimerPaymentMethodsresolve their per-feature session automatically. - Lifecycle bootstrapping — calls
start()on appear andcancel()on disappear. - Overlay management — renders overlays for 3DS challenges and redirect flows automatically once the session is
.ready.
Usage
Hold the session as a@StateObject, place the composable views in a ScrollView, and attach the modifier with your completion handler.
PrimerCardFormSession and PrimerSelectionSession, which PrimerCardForm and PrimerPaymentMethods bind to once the session reaches .ready.
Supplying an idempotency key
Provide the declarativeidempotencyKey provider at construction, or assign onBeforePaymentCreate for full control over the payment-creation decision. Either may be assigned after .ready — the change applies to the next payment attempt.
See also
PrimerCheckout
The managed modal entry point powered by the same session.
PrimerCardForm
Composable card form that resolves its session from the environment.
PrimerPaymentMethods
Composable payment-method selection list for inline layouts.
PrimerCheckoutState
The terminal outcome delivered to onCompletion.