Class: TencentCloud::Cls::V20201016::DescribeLogContextResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cls::V20201016::DescribeLogContextResponse
- Defined in:
- lib/v20201016/models.rb
Overview
DescribeLogContext返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(logcontextinfos = nil, prevover = nil, nextover = nil, requestid = nil) ⇒ DescribeLogContextResponse
constructor
A new instance of DescribeLogContextResponse.
Constructor Details
#initialize(logcontextinfos = nil, prevover = nil, nextover = nil, requestid = nil) ⇒ DescribeLogContextResponse
Returns a new instance of DescribeLogContextResponse.
7050 7051 7052 7053 7054 7055 |
# File 'lib/v20201016/models.rb', line 7050 def initialize(logcontextinfos=nil, prevover=nil, nextover=nil, requestid=nil) @LogContextInfos = logcontextinfos @PrevOver = prevover @NextOver = nextover @RequestId = requestid end |
Instance Attribute Details
#LogContextInfos ⇒ Object
7048 7049 7050 |
# File 'lib/v20201016/models.rb', line 7048 def LogContextInfos @LogContextInfos end |
#NextOver ⇒ Object
7048 7049 7050 |
# File 'lib/v20201016/models.rb', line 7048 def NextOver @NextOver end |
#PrevOver ⇒ Object
7048 7049 7050 |
# File 'lib/v20201016/models.rb', line 7048 def PrevOver @PrevOver end |
#RequestId ⇒ Object
7048 7049 7050 |
# File 'lib/v20201016/models.rb', line 7048 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 |
# File 'lib/v20201016/models.rb', line 7057 def deserialize(params) unless params['LogContextInfos'].nil? @LogContextInfos = [] params['LogContextInfos'].each do |i| logcontextinfo_tmp = LogContextInfo.new logcontextinfo_tmp.deserialize(i) @LogContextInfos << logcontextinfo_tmp end end @PrevOver = params['PrevOver'] @NextOver = params['NextOver'] @RequestId = params['RequestId'] end |