Sha256: 5fcdb2784cce7872b006f1fd9891faf46d0d084a25fca1068788a17c847a5221
Contents?: true
Size: 267 Bytes
Versions: 9
Compression:
Stored size: 267 Bytes
Contents
# frozen_string_literal: true module AppStoreDevApi class Schema class Object attr_reader :type, :properties def initialize(options) @type = options.fetch(:type) @properties = options.fetch(:properties) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems