Class SessionCreateParams

    • Method Detail

      • getAllowPromotionCodes

        public java.lang.Boolean getAllowPromotionCodes()
        Enables user redeemable promotion codes.
      • 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 is required for Checkout to prefill the customer's card details.

        If the customer changes their email on the Checkout page, the Customer object will be updated with the new email.

        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.

      • 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.
      • 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()
        The shipping rate to apply to this Session. Currently, 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 access to the Checkout Session for the successful payment, read more about it in the guide on fulfilling orders.