Class: TencentCloud::Bri::V20190328::BRIResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bri::V20190328::BRIResponse
- Defined in:
- lib/v20190328/models.rb
Overview
响应
Instance Attribute Summary collapse
-
#Score ⇒ Object
当Service为bri_apk时,返回的风险标签有: 1) 安全 说明: APK为正规应用 2) 一般 说明: APK为未发现问题的正常应用 3) 风险 说明: APK为外挂或色情等风险应用 4) 病毒 说明: APK为包含恶意代码的恶意软件,可能破坏系统或者其他app正常使用.
-
#Tags ⇒ Object
当Service为bri_apk时,返回的风险标签有: 1) 安全 说明: APK为正规应用 2) 一般 说明: APK为未发现问题的正常应用 3) 风险 说明: APK为外挂或色情等风险应用 4) 病毒 说明: APK为包含恶意代码的恶意软件,可能破坏系统或者其他app正常使用.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(score = nil, tags = nil) ⇒ BRIResponse
constructor
A new instance of BRIResponse.
Constructor Details
#initialize(score = nil, tags = nil) ⇒ BRIResponse
125 126 127 128 |
# File 'lib/v20190328/models.rb', line 125 def initialize(score=nil, =nil) @Score = score @Tags = end |
Instance Attribute Details
#Score ⇒ Object
当Service为bri_apk时,返回的风险标签有: 1) 安全 说明: APK为正规应用2) 一般 说明: APK为未发现问题的正常应用3) 风险 说明: APK为外挂或色情等风险应用4) 病毒 说明: APK为包含恶意代码的恶意软件,可能破坏系统或者其他app正常使用
123 124 125 |
# File 'lib/v20190328/models.rb', line 123 def Score @Score end |
#Tags ⇒ Object
当Service为bri_apk时,返回的风险标签有: 1) 安全 说明: APK为正规应用2) 一般 说明: APK为未发现问题的正常应用3) 风险 说明: APK为外挂或色情等风险应用4) 病毒 说明: APK为包含恶意代码的恶意软件,可能破坏系统或者其他app正常使用
123 124 125 |
# File 'lib/v20190328/models.rb', line 123 def Tags @Tags end |
Instance Method Details
#deserialize(params) ⇒ Object
130 131 132 133 |
# File 'lib/v20190328/models.rb', line 130 def deserialize(params) @Score = params['Score'] @Tags = params['Tags'] end |