Class: TencentCloud::Ses::V20201002::CreateCustomBlacklistResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ses::V20201002::CreateCustomBlacklistResponse
- Defined in:
- lib/v20201002/models.rb
Overview
CreateCustomBlacklist返回参数结构体
Instance Attribute Summary collapse
- #InvalidCount ⇒ Object
- #RepeatCount ⇒ Object
- #RequestId ⇒ Object
- #TooLongCount ⇒ Object
- #TotalCount ⇒ Object
- #ValidCount ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, validcount = nil, toolongcount = nil, repeatcount = nil, invalidcount = nil, requestid = nil) ⇒ CreateCustomBlacklistResponse
constructor
A new instance of CreateCustomBlacklistResponse.
Constructor Details
#initialize(totalcount = nil, validcount = nil, toolongcount = nil, repeatcount = nil, invalidcount = nil, requestid = nil) ⇒ CreateCustomBlacklistResponse
Returns a new instance of CreateCustomBlacklistResponse.
303 304 305 306 307 308 309 310 |
# File 'lib/v20201002/models.rb', line 303 def initialize(totalcount=nil, validcount=nil, toolongcount=nil, repeatcount=nil, invalidcount=nil, requestid=nil) @TotalCount = totalcount @ValidCount = validcount @TooLongCount = toolongcount @RepeatCount = repeatcount @InvalidCount = invalidcount @RequestId = requestid end |
Instance Attribute Details
#InvalidCount ⇒ Object
301 302 303 |
# File 'lib/v20201002/models.rb', line 301 def InvalidCount @InvalidCount end |
#RepeatCount ⇒ Object
301 302 303 |
# File 'lib/v20201002/models.rb', line 301 def RepeatCount @RepeatCount end |
#RequestId ⇒ Object
301 302 303 |
# File 'lib/v20201002/models.rb', line 301 def RequestId @RequestId end |
#TooLongCount ⇒ Object
301 302 303 |
# File 'lib/v20201002/models.rb', line 301 def TooLongCount @TooLongCount end |
#TotalCount ⇒ Object
301 302 303 |
# File 'lib/v20201002/models.rb', line 301 def TotalCount @TotalCount end |
#ValidCount ⇒ Object
301 302 303 |
# File 'lib/v20201002/models.rb', line 301 def ValidCount @ValidCount end |
Instance Method Details
#deserialize(params) ⇒ Object
312 313 314 315 316 317 318 319 |
# File 'lib/v20201002/models.rb', line 312 def deserialize(params) @TotalCount = params['TotalCount'] @ValidCount = params['ValidCount'] @TooLongCount = params['TooLongCount'] @RepeatCount = params['RepeatCount'] @InvalidCount = params['InvalidCount'] @RequestId = params['RequestId'] end |