Class SessionCreateParams

    • Method Detail

      • getAllowPromotionCodes

        public java.lang.Boolean getAllowPromotionCodes()
        Enables user redeemable promotion codes.
      • getAutomaticTax

        public SessionCreateParams.AutomaticTax getAutomaticTax()
        Settings for automatic tax lookup for this session and resulting payments, invoices, and subscriptions.
      • getCancelUrl

        public java.lang.String getCancelUrl()
        The URL the customer will be directed to if they decide to cancel payment and return to your website.
      • getClientReferenceId

        public java.lang.String getClientReferenceId()
        A unique string to reference the Checkout Session. This can be a customer ID, a cart ID, or similar, and can be used to reconcile the session with your internal systems.
      • getCustomer

        public java.lang.String getCustomer()
        ID of an existing Customer, if one exists. In payment mode, the customer’s most recent card payment method will be used to prefill the email, name, card details, and billing address on the Checkout page. In subscription mode, the customer’s default payment method will be used if it’s a card, and otherwise the most recent card will be used. A valid billing address, billing name and billing email are required on the payment method for Checkout to prefill the customer's card details.

        If the Customer already has a valid email set, the email will be prefilled and not editable in Checkout. If the Customer does not have a valid email, Checkout will set the email entered during the session on the Customer.

        If blank for Checkout Sessions in payment or subscription mode, Checkout will create a new Customer object based on information provided during the payment flow.

        You can set payment_intent_data.setup_future_usage to have Checkout automatically attach the payment method to the Customer you pass in for future reuse.

      • getCustomerCreation

        public SessionCreateParams.CustomerCreation getCustomerCreation()
        Configure whether a Checkout Session creates a Customer during Session confirmation.

        When a Customer is not created, you can still retrieve email, address, and other customer data entered in Checkout with customer_details.

        Sessions that do not create Customers will instead create Guest Customers in the Dashboard.

        Can only be set in payment and setup mode.

      • getCustomerEmail

        public java.lang.String getCustomerEmail()
        If provided, this value will be used when the Customer object is created. If not provided, customers will be asked to enter their email address. Use this parameter to prefill customer data if you already have an email on file. To access information about the customer once a session is complete, use the customer field.
      • getCustomerUpdate

        public SessionCreateParams.CustomerUpdate getCustomerUpdate()
        Controls what fields on Customer can be updated by the Checkout Session. Can only be provided when customer is provided.
      • getDiscounts

        public java.util.List<SessionCreateParams.Discount> getDiscounts()
        The coupon or promotion code to apply to this Session. Currently, only up to one may be specified.
      • getExpand

        public java.util.List<java.lang.String> getExpand()
        Specifies which fields in the response should be expanded.
      • getExpiresAt

        public java.lang.Long getExpiresAt()
        The Epoch time in seconds at which the Checkout Session will expire. It can be anywhere from 1 to 24 hours after Checkout Session creation. By default, this value is 24 hours from creation.
      • getExtraParams

        public java.util.Map<java.lang.String,​java.lang.Object> getExtraParams()
        Map of extra parameters for custom features not available in this client library. The content in this map is not serialized under this field's @SerializedName value. Instead, each key/value pair is serialized as if the key is a root-level field (serialized) name in this param object. Effectively, this map is flattened to its parent instance.
      • getLineItems

        public java.util.List<SessionCreateParams.LineItem> getLineItems()
        A list of items the customer is purchasing. Use this parameter to pass one-time or recurring Prices.

        For payment mode, there is a maximum of 100 line items, however it is recommended to consolidate line items if there are more than a few dozen.

        For subscription mode, there is a maximum of 20 line items with recurring Prices and 20 line items with one-time Prices. Line items with one-time Prices in will be on the initial invoice only.

      • getLocale

        public SessionCreateParams.Locale getLocale()
        The IETF language tag of the locale Checkout is displayed in. If blank or auto, the browser's locale is used.
      • getMetadata

        public java.util.Map<java.lang.String,​java.lang.String> getMetadata()
        Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to metadata.
      • getMode

        public SessionCreateParams.Mode getMode()
        The mode of the Checkout Session. Required when using prices or setup mode. Pass subscription if the Checkout Session includes at least one recurring item.
      • getPaymentIntentData

        public SessionCreateParams.PaymentIntentData getPaymentIntentData()
        A subset of parameters to be passed to PaymentIntent creation for Checkout Sessions in payment mode.
      • getPaymentMethodTypes

        public java.util.List<SessionCreateParams.PaymentMethodType> getPaymentMethodTypes()
        A list of the types of payment methods (e.g., card) this Checkout Session can accept.

        Read more about the supported payment methods and their requirements in our payment method details guide.

        If multiple payment methods are passed, Checkout will dynamically reorder them to prioritize the most relevant payment methods based on the customer's location and other characteristics.

      • getSetupIntentData

        public SessionCreateParams.SetupIntentData getSetupIntentData()
        A subset of parameters to be passed to SetupIntent creation for Checkout Sessions in setup mode.
      • getShippingRates

        public java.util.List<java.lang.String> getShippingRates()
        [Deprecated] The shipping rate to apply to this Session. Only up to one may be specified.
      • getSubmitType

        public SessionCreateParams.SubmitType getSubmitType()
        Describes the type of transaction being performed by Checkout in order to customize relevant text on the page, such as the submit button. submit_type can only be specified on Checkout Sessions in payment mode, but not Checkout Sessions in subscription or setup mode.
      • getSubscriptionData

        public SessionCreateParams.SubscriptionData getSubscriptionData()
        A subset of parameters to be passed to subscription creation for Checkout Sessions in subscription mode.
      • getSuccessUrl

        public java.lang.String getSuccessUrl()
        The URL to which Stripe should send customers when payment or setup is complete. If you’d like to use information from the successful Checkout Session on your page, read the guide on customizing your success page.