Class: TencentCloud::Rce::V20250425::ManageIPPortraitRiskOutput
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Rce::V20250425::ManageIPPortraitRiskOutput
- Defined in:
- lib/v20250425/models.rb
Overview
IP画像出参
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(code = nil, message = nil, value = nil) ⇒ ManageIPPortraitRiskOutput
constructor
A new instance of ManageIPPortraitRiskOutput.
Constructor Details
#initialize(code = nil, message = nil, value = nil) ⇒ ManageIPPortraitRiskOutput
Returns a new instance of ManageIPPortraitRiskOutput.
51 52 53 54 55 |
# File 'lib/v20250425/models.rb', line 51 def initialize(code=nil, =nil, value=nil) @Code = code @Message = @Value = value end |
Instance Attribute Details
#Code ⇒ Object
49 50 51 |
# File 'lib/v20250425/models.rb', line 49 def Code @Code end |
#Message ⇒ Object
49 50 51 |
# File 'lib/v20250425/models.rb', line 49 def Message @Message end |
#Value ⇒ Object
49 50 51 |
# File 'lib/v20250425/models.rb', line 49 def Value @Value end |
Instance Method Details
#deserialize(params) ⇒ Object
57 58 59 60 61 62 63 64 |
# File 'lib/v20250425/models.rb', line 57 def deserialize(params) @Code = params['Code'] @Message = params['Message'] unless params['Value'].nil? @Value = ManageIPPortraitRiskValueOutput.new @Value.deserialize(params['Value']) end end |