lib/datadog/appsec/instrumentation/gateway/argument.rb



# frozen_string_literal: true

module Datadog
  module AppSec
    module Instrumentation
      class Gateway
        # Base class for Gateway Arguments
        class Argument; end # rubocop:disable Lint/EmptyClass

        # Gateway User argument
        class User < Argument
          attr_reader :id

          def initialize(id)
            super()
            @id = id
          end
        end
      end
    end
  end
end