Package com.stripe.param
Class SkuCreateParams
java.lang.Object
com.stripe.net.ApiRequestParams
com.stripe.param.SkuCreateParams
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static class
static class
Nested classes/interfaces inherited from class com.stripe.net.ApiRequestParams
ApiRequestParams.EnumParam
-
Field Summary
Fields inherited from class com.stripe.net.ApiRequestParams
EXTRA_PARAMS_KEY
-
Method Summary
Modifier and TypeMethodDescriptionstatic SkuCreateParams.Builder
builder()
Whether the SKU is available for purchase.A dictionary of attributes and values for the attributes defined by the product.Three-letter ISO currency code, in lowercase.Specifies which fields in the response should be expanded.Map of extra parameters for custom features not available in this client library.getId()
The identifier for the SKU.getImage()
The URL of an image for this SKU, meant to be displayable to the customer.Description of the SKU's inventory.Set of key-value pairs that you can attach to an object.The dimensions of this SKU for shipping purposes.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).The ID of the product this SKU is associated with.Methods inherited from class com.stripe.net.ApiRequestParams
toMap
-
Method Details
-
builder
-
getActive
Whether the SKU is available for purchase. Default totrue
. -
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
Three-letter ISO currency code, in lowercase. Must be a supported currency. -
getExpand
Specifies which fields in the response should be expanded. -
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
The identifier for the SKU. Must be unique. If not provided, an identifier will be randomly generated. -
getImage
The URL of an image for this SKU, meant to be displayable to the customer. -
getInventory
Description of the SKU's inventory. -
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 tometadata
. -
getPackageDimensions
The dimensions of this SKU for shipping purposes. -
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
The ID of the product this SKU is associated with. Must be a product with typegood
.
-