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