mirror of
https://github.com/stripe/stripe-ruby.git
synced 2025-10-04 00:00:47 -04:00
20 lines
712 B
Ruby
20 lines
712 B
Ruby
# File generated from our OpenAPI spec
|
|
# frozen_string_literal: true
|
|
|
|
module Stripe
|
|
# Stores representations of [stock keeping units](http://en.wikipedia.org/wiki/Stock_keeping_unit).
|
|
# SKUs describe specific product variations, taking into account any combination of: attributes,
|
|
# currency, and cost. For example, a product may be a T-shirt, whereas a specific SKU represents
|
|
# the `size: large`, `color: red` version of that shirt.
|
|
#
|
|
# Can also be used to manage inventory.
|
|
class SKU < APIResource
|
|
extend Stripe::APIOperations::Create
|
|
include Stripe::APIOperations::Delete
|
|
extend Stripe::APIOperations::List
|
|
include Stripe::APIOperations::Save
|
|
|
|
OBJECT_NAME = "sku"
|
|
end
|
|
end
|