Class SkuCreateParams

java.lang.Object
com.stripe.net.ApiRequestParams
com.stripe.param.SkuCreateParams

public class SkuCreateParams extends ApiRequestParams
  • Method Details

    • builder

      public static SkuCreateParams.Builder builder()
    • getActive

      public Boolean getActive()
      Whether the SKU is available for purchase. Default to true.
    • getAttributes

      public Map<String,String> getAttributes()
      A dictionary of attributes and values for the attributes defined by the product. If, for example, a product's attributes are ["size", "gender"], a valid SKU has the following dictionary of attributes: {"size": "Medium", "gender": "Unisex"}.
    • getCurrency

      public String getCurrency()
      Three-letter ISO currency code, in lowercase. Must be a supported currency.
    • getExpand

      public List<String> getExpand()
      Specifies which fields in the response should be expanded.
    • getExtraParams

      public Map<String,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.
    • getId

      public String getId()
      The identifier for the SKU. Must be unique. If not provided, an identifier will be randomly generated.
    • getImage

      public String getImage()
      The URL of an image for this SKU, meant to be displayable to the customer.
    • getInventory

      public SkuCreateParams.Inventory getInventory()
      Description of the SKU's inventory.
    • getMetadata

      public Map<String,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.
    • getPackageDimensions

      public SkuCreateParams.PackageDimensions getPackageDimensions()
      The dimensions of this SKU for shipping purposes.
    • getPrice

      public Long getPrice()
      The cost of the item as a nonnegative integer in the smallest currency unit (that is, 100 cents to charge $1.00, or 100 to charge ¥100, Japanese Yen being a zero-decimal currency).
    • getProduct

      public String getProduct()
      The ID of the product this SKU is associated with. Must be a product with type good.