Class: TencentCloud::Ses::V20201002::CreateReceiverDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ses::V20201002::CreateReceiverDetailResponse
- Defined in:
- lib/v20201002/models.rb
Overview
CreateReceiverDetail返回参数结构体
Instance Attribute Summary collapse
- #EmptyEmailCount ⇒ 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, emptyemailcount = nil, repeatcount = nil, requestid = nil) ⇒ CreateReceiverDetailResponse
constructor
A new instance of CreateReceiverDetailResponse.
Constructor Details
#initialize(totalcount = nil, validcount = nil, toolongcount = nil, emptyemailcount = nil, repeatcount = nil, requestid = nil) ⇒ CreateReceiverDetailResponse
Returns a new instance of CreateReceiverDetailResponse.
504 505 506 507 508 509 510 511 |
# File 'lib/v20201002/models.rb', line 504 def initialize(totalcount=nil, validcount=nil, toolongcount=nil, emptyemailcount=nil, repeatcount=nil, requestid=nil) @TotalCount = totalcount @ValidCount = validcount @TooLongCount = toolongcount @EmptyEmailCount = emptyemailcount @RepeatCount = repeatcount @RequestId = requestid end |
Instance Attribute Details
#EmptyEmailCount ⇒ Object
502 503 504 |
# File 'lib/v20201002/models.rb', line 502 def EmptyEmailCount @EmptyEmailCount end |
#RepeatCount ⇒ Object
502 503 504 |
# File 'lib/v20201002/models.rb', line 502 def RepeatCount @RepeatCount end |
#RequestId ⇒ Object
502 503 504 |
# File 'lib/v20201002/models.rb', line 502 def RequestId @RequestId end |
#TooLongCount ⇒ Object
502 503 504 |
# File 'lib/v20201002/models.rb', line 502 def TooLongCount @TooLongCount end |
#TotalCount ⇒ Object
502 503 504 |
# File 'lib/v20201002/models.rb', line 502 def TotalCount @TotalCount end |
#ValidCount ⇒ Object
502 503 504 |
# File 'lib/v20201002/models.rb', line 502 def ValidCount @ValidCount end |
Instance Method Details
#deserialize(params) ⇒ Object
513 514 515 516 517 518 519 520 |
# File 'lib/v20201002/models.rb', line 513 def deserialize(params) @TotalCount = params['TotalCount'] @ValidCount = params['ValidCount'] @TooLongCount = params['TooLongCount'] @EmptyEmailCount = params['EmptyEmailCount'] @RepeatCount = params['RepeatCount'] @RequestId = params['RequestId'] end |