Class PaymentIntentCaptureParams.Builder

java.lang.Object
com.stripe.param.PaymentIntentCaptureParams.Builder
Enclosing class:
PaymentIntentCaptureParams

public static class PaymentIntentCaptureParams.Builder extends Object
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • build

      Finalize and obtain parameter instance from this builder.
    • setAmountToCapture

      public PaymentIntentCaptureParams.Builder setAmountToCapture(Long amountToCapture)
      The amount to capture from the PaymentIntent, which must be less than or equal to the original amount. Any additional amount will be automatically refunded. Defaults to the full amount_capturable if not provided.
    • setApplicationFeeAmount

      public PaymentIntentCaptureParams.Builder setApplicationFeeAmount(Long applicationFeeAmount)
      The amount of the application fee (if any) that will be requested to be applied to the payment and transferred to the application owner's Stripe account. The amount of the application fee collected will be capped at the total payment amount. For more information, see the PaymentIntents use case for connected accounts.
    • addExpand

      public PaymentIntentCaptureParams.Builder addExpand(String element)
      Add an element to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. See PaymentIntentCaptureParams.expand for the field documentation.
    • addAllExpand

      public PaymentIntentCaptureParams.Builder addAllExpand(List<String> elements)
      Add all elements to `expand` list. A list is initialized for the first `add/addAll` call, and subsequent calls adds additional elements to the original list. See PaymentIntentCaptureParams.expand for the field documentation.
    • putExtraParam

      public PaymentIntentCaptureParams.Builder putExtraParam(String key, Object value)
      Add a key/value pair to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. See PaymentIntentCaptureParams.extraParams for the field documentation.
    • putAllExtraParam

      public PaymentIntentCaptureParams.Builder putAllExtraParam(Map<String,Object> map)
      Add all map key/value pairs to `extraParams` map. A map is initialized for the first `put/putAll` call, and subsequent calls add additional key/value pairs to the original map. See PaymentIntentCaptureParams.extraParams for the field documentation.
    • setStatementDescriptor

      public PaymentIntentCaptureParams.Builder setStatementDescriptor(String statementDescriptor)
      For non-card charges, you can use this value as the complete description that appears on your customers’ statements. Must contain at least one letter, maximum 22 characters.
    • setStatementDescriptorSuffix

      public PaymentIntentCaptureParams.Builder setStatementDescriptorSuffix(String statementDescriptorSuffix)
      Provides information about a card payment that customers see on their statements. Concatenated with the prefix (shortened descriptor) or statement descriptor that’s set on the account to form the complete statement descriptor. Maximum 22 characters for the concatenated descriptor.
    • setTransferData

      The parameters used to automatically create a Transfer when the payment is captured. For more information, see the PaymentIntents use case for connected accounts.