Sha256: 762c9658173495c77e009812ff06bf6aeb6365d8c68d44af69a4b47969ee4980
Contents?: true
Size: 775 Bytes
Versions: 4
Compression:
Stored size: 775 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/agent/reporting/details/protect_rule_details' module Contrast module Agent module Reporting module Details # HttpMethodTemperingDetails IA result details info. class HttpMethodTemperingDetails < ProtectRuleDetails # @return [String] attr_accessor :method # @return [Integer] attr_accessor :response_code def to_controlled_hash { method: method, # rubocop:disable Security/Object/Method responseCode: response_code } end end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems