Sha256: a27f62a41c5259f774d01704b61db81d817139374d6b3f1fbbdfa42600c84090
Contents?: true
Size: 891 Bytes
Versions: 22
Compression:
Stored size: 891 Bytes
Contents
# frozen_string_literal: true module Script module Layers module Domain class PushPackage attr_reader :id, :uuid, :extension_point_type, :title, :description, :script_config, :script_content, :metadata, :library def initialize( id:, uuid:, extension_point_type:, title:, description:, script_content:, metadata:, script_config:, library: ) @id = id @uuid = uuid @extension_point_type = extension_point_type @title = title @description = description @script_content = script_content @metadata = metadata @script_config = script_config @library = library end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems