Sha256: aaaf18c40684851ad7c0eb79b36d5e04cc9dfbcf3a47ea920f1cd4d5c4e4c73f
Contents?: true
Size: 765 Bytes
Versions: 6
Compression:
Stored size: 765 Bytes
Contents
# frozen_string_literal: true module Script module Layers module Domain class PushPackage attr_reader :id, :uuid, :extension_point_type, :script_json, :script_content, :compiled_type, :metadata def initialize( id:, uuid:, extension_point_type:, script_content:, compiled_type: nil, metadata:, script_json: ) @id = id @uuid = uuid @extension_point_type = extension_point_type @script_content = script_content @compiled_type = compiled_type @metadata = metadata @script_json = script_json end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems