Class: TencentCloud::Dbbrain::V20210527::DescribeMailProfileResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::DescribeMailProfileResponse
- Defined in:
- lib/v20210527/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.
2980 2981 2982 2983 2984 |
# File 'lib/v20210527/models.rb', line 2980 def initialize(profilelist=nil, totalcount=nil, requestid=nil) @ProfileList = profilelist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#ProfileList ⇒ Object
2978 2979 2980 |
# File 'lib/v20210527/models.rb', line 2978 def ProfileList @ProfileList end |
#RequestId ⇒ Object
2978 2979 2980 |
# File 'lib/v20210527/models.rb', line 2978 def RequestId @RequestId end |
#TotalCount ⇒ Object
2978 2979 2980 |
# File 'lib/v20210527/models.rb', line 2978 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 |
# File 'lib/v20210527/models.rb', line 2986 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 |