# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true require 'contrast/agent/reporting/details/protect_rule_details' module Contrast module Agent module Reporting module Details # SqliDangerousFunctions IA result details info. class SqliDangerousFunctions < ProtectRuleDetails # @return [String] attr_accessor :query def to_controlled_hash { query: query } end end end end end end