Class: TencentCloud::Dbbrain::V20191016::DescribeMailProfileResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20191016::DescribeMailProfileResponse
- Defined in:
- lib/v20191016/models.rb
Overview
DescribeMailProfile返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(profilelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeMailProfileResponse
constructor
A new instance of DescribeMailProfileResponse.
Constructor Details
#initialize(profilelist = nil, totalcount = nil, requestid = nil) ⇒ DescribeMailProfileResponse
Returns a new instance of DescribeMailProfileResponse.
936 937 938 939 940 |
# File 'lib/v20191016/models.rb', line 936 def initialize(profilelist=nil, totalcount=nil, requestid=nil) @ProfileList = profilelist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ProfileList ⇒ Object
934 935 936 |
# File 'lib/v20191016/models.rb', line 934 def ProfileList @ProfileList end |
#RequestId ⇒ Object
934 935 936 |
# File 'lib/v20191016/models.rb', line 934 def RequestId @RequestId end |
#TotalCount ⇒ Object
934 935 936 |
# File 'lib/v20191016/models.rb', line 934 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
942 943 944 945 946 947 948 949 950 951 952 953 |
# File 'lib/v20191016/models.rb', line 942 def deserialize(params) unless params['ProfileList'].nil? @ProfileList = [] params['ProfileList'].each do |i| userprofile_tmp = UserProfile.new userprofile_tmp.deserialize(i) @ProfileList << userprofile_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |