Sha256: fc213a9f45f3c21a979e0bdc4478545ff04bc20f8ea9bf85e30b2ea562cd884e
Contents?: true
Size: 278 Bytes
Versions: 9
Compression:
Stored size: 278 Bytes
Contents
# frozen_string_literal: true module AppStoreDevApi class Schema class Type attr_reader :type, :options, :values def initialize(options) @type = options[:type] @values = options[:values] @options = options end end end end
Version data entries
9 entries across 9 versions & 1 rubygems