Class: TencentCloud::Dbbrain::V20210527::DescribeUserAutonomyProfileResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dbbrain::V20210527::DescribeUserAutonomyProfileResponse
- Defined in:
- lib/v20210527/models.rb
Overview
DescribeUserAutonomyProfile返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(profiletype = nil, updatetime = nil, profileinfo = nil, requestid = nil) ⇒ DescribeUserAutonomyProfileResponse
constructor
A new instance of DescribeUserAutonomyProfileResponse.
Constructor Details
#initialize(profiletype = nil, updatetime = nil, profileinfo = nil, requestid = nil) ⇒ DescribeUserAutonomyProfileResponse
5015 5016 5017 5018 5019 5020 |
# File 'lib/v20210527/models.rb', line 5015 def initialize(profiletype=nil, updatetime=nil, profileinfo=nil, requestid=nil) @ProfileType = profiletype @UpdateTime = updatetime @ProfileInfo = profileinfo @RequestId = requestid end |
Instance Attribute Details
#ProfileInfo ⇒ Object
5013 5014 5015 |
# File 'lib/v20210527/models.rb', line 5013 def ProfileInfo @ProfileInfo end |
#ProfileType ⇒ Object
5013 5014 5015 |
# File 'lib/v20210527/models.rb', line 5013 def ProfileType @ProfileType end |
#RequestId ⇒ Object
5013 5014 5015 |
# File 'lib/v20210527/models.rb', line 5013 def RequestId @RequestId end |
#UpdateTime ⇒ Object
5013 5014 5015 |
# File 'lib/v20210527/models.rb', line 5013 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
5022 5023 5024 5025 5026 5027 5028 5029 5030 |
# File 'lib/v20210527/models.rb', line 5022 def deserialize(params) @ProfileType = params['ProfileType'] @UpdateTime = params['UpdateTime'] unless params['ProfileInfo'].nil? @ProfileInfo = AutonomyUserProfileInfo.new @ProfileInfo.deserialize(params['ProfileInfo']) end @RequestId = params['RequestId'] end |