Sha256: 69c0d3fac45132f49eeb20e756fe8f9741abd85128bcd1dc604f3fe4c346c4ce
Contents?: true
Size: 279 Bytes
Versions: 23
Compression:
Stored size: 279 Bytes
Contents
# frozen_string_literal: true module AppStoreConnect 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
23 entries across 23 versions & 1 rubygems