Class CardCreateParams.Builder

java.lang.Object
com.stripe.param.giftcards.CardCreateParams.Builder
Enclosing class:
CardCreateParams

public static class CardCreateParams.Builder extends Object
  • Constructor Details

    • Builder

      public Builder()
  • Method Details

    • build

      public CardCreateParams build()
      Finalize and obtain parameter instance from this builder.
    • setActive

      public CardCreateParams.Builder setActive(Boolean active)
      The active state for the new gift card, defaults to false. The active state can be updated after creation.
    • setCreatedBy

      public CardCreateParams.Builder setCreatedBy(CardCreateParams.CreatedBy createdBy)
      Related objects which created this gift card.
    • setCurrency

      public CardCreateParams.Builder setCurrency(String currency)
      Required. Three-letter ISO currency code, in lowercase. Must be a supported currency.
    • addExpand

      public CardCreateParams.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 CardCreateParams.expand for the field documentation.
    • addAllExpand

      public CardCreateParams.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 CardCreateParams.expand for the field documentation.
    • putExtraParam

      public CardCreateParams.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 CardCreateParams.extraParams for the field documentation.
    • putAllExtraParam

      public CardCreateParams.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 CardCreateParams.extraParams for the field documentation.
    • setInitialAmount

      public CardCreateParams.Builder setInitialAmount(Long initialAmount)
      The initial amount to load onto the new gift card, defaults to 0.
    • putMetadata

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

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