Class: TencentCloud::Domain::V20180808::DescribePhoneEmailListResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Domain::V20180808::DescribePhoneEmailListResponse
- Defined in:
- lib/v20180808/models.rb
Overview
DescribePhoneEmailList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(phoneemaillist = nil, totalcount = nil, requestid = nil) ⇒ DescribePhoneEmailListResponse
constructor
A new instance of DescribePhoneEmailListResponse.
Constructor Details
#initialize(phoneemaillist = nil, totalcount = nil, requestid = nil) ⇒ DescribePhoneEmailListResponse
Returns a new instance of DescribePhoneEmailListResponse.
2133 2134 2135 2136 2137 |
# File 'lib/v20180808/models.rb', line 2133 def initialize(phoneemaillist=nil, totalcount=nil, requestid=nil) @PhoneEmailList = phoneemaillist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#PhoneEmailList ⇒ Object
2131 2132 2133 |
# File 'lib/v20180808/models.rb', line 2131 def PhoneEmailList @PhoneEmailList end |
#RequestId ⇒ Object
2131 2132 2133 |
# File 'lib/v20180808/models.rb', line 2131 def RequestId @RequestId end |
#TotalCount ⇒ Object
2131 2132 2133 |
# File 'lib/v20180808/models.rb', line 2131 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 |
# File 'lib/v20180808/models.rb', line 2139 def deserialize(params) unless params['PhoneEmailList'].nil? @PhoneEmailList = [] params['PhoneEmailList'].each do |i| phoneemaildata_tmp = PhoneEmailData.new phoneemaildata_tmp.deserialize(i) @PhoneEmailList << phoneemaildata_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |