Sha256: 53009f6f431b5e68d557ed351c53e79462c5c313a788979ea6fa8a8e84a0e0a5
Contents?: true
Size: 291 Bytes
Versions: 5
Compression:
Stored size: 291 Bytes
Contents
# frozen_string_literal: true module AppStoreConnect class Schema class Type attr_reader :type, :options def initialize(**options) @type = options[:type] @options = options end def values @options[:values] end end end end
Version data entries
5 entries across 5 versions & 1 rubygems