Class: TencentCloud::Dbbrain::V20210527::DescribeUserAutonomyProfileResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20210527/models.rb

Overview

DescribeUserAutonomyProfile返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#ProfileInfoObject



5013
5014
5015
# File 'lib/v20210527/models.rb', line 5013

def ProfileInfo
  @ProfileInfo
end

#ProfileTypeObject



5013
5014
5015
# File 'lib/v20210527/models.rb', line 5013

def ProfileType
  @ProfileType
end

#RequestIdObject



5013
5014
5015
# File 'lib/v20210527/models.rb', line 5013

def RequestId
  @RequestId
end

#UpdateTimeObject



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