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.
237 238 239 240 241 242 243 244 |
# File 'lib/v20201002/models.rb', line 237 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
235 236 237 |
# File 'lib/v20201002/models.rb', line 235 def InvalidCount @InvalidCount end |
#RepeatCount ⇒ Object
235 236 237 |
# File 'lib/v20201002/models.rb', line 235 def RepeatCount @RepeatCount end |
#RequestId ⇒ Object
235 236 237 |
# File 'lib/v20201002/models.rb', line 235 def RequestId @RequestId end |
#TooLongCount ⇒ Object
235 236 237 |
# File 'lib/v20201002/models.rb', line 235 def TooLongCount @TooLongCount end |
#TotalCount ⇒ Object
235 236 237 |
# File 'lib/v20201002/models.rb', line 235 def TotalCount @TotalCount end |
#ValidCount ⇒ Object
235 236 237 |
# File 'lib/v20201002/models.rb', line 235 def ValidCount @ValidCount end |
Instance Method Details
#deserialize(params) ⇒ Object
246 247 248 249 250 251 252 253 |
# File 'lib/v20201002/models.rb', line 246 def deserialize(params) @TotalCount = params['TotalCount'] @ValidCount = params['ValidCount'] @TooLongCount = params['TooLongCount'] @RepeatCount = params['RepeatCount'] @InvalidCount = params['InvalidCount'] @RequestId = params['RequestId'] end |