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