bigcommerce/bigcommerce-api-ruby

View on GitHub
lib/bigcommerce/resources/products/option_set.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# Option Set
# A reusable set of option facets that can be applied to products.
# https://developer.bigcommerce.com/api/stores/v2/options_sets

module Bigcommerce
  class OptionSet < Resource
    include Bigcommerce::ResourceActions.new uri: 'option_sets/%d'

    property :id
    property :name
    property :count
    property :options

    def self.count(params = {})
      get 'option_sets/count', params
    end
  end
end