Sha256: 05822b2e3a796886d5881082df3cfc85ff0ea790b91aee112d4d26c66b3a1f09
Contents?: true
Size: 823 Bytes
Versions: 19
Compression:
Stored size: 823 Bytes
Contents
# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'contrast/api/dtm.pb' require 'contrast/utils/string_utils' require 'contrast/components/base' module Contrast module Api module Decorators # Used to decorate the {Contrast::Api::Dtm::Finding} protobuf # model so it can own the request which its data is for. module Finding def self.included klass klass.extend(ClassMethods) end # Used to add class methods to the AgentStartup class on inclusion of the decorator module ClassMethods def build new end end end end end end Contrast::Api::Dtm::Finding.include(Contrast::Api::Decorators::Finding)
Version data entries
19 entries across 19 versions & 1 rubygems