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.
8920 8921 8922 8923 8924 8925 |
# File 'lib/v20201016/models.rb', line 8920 def initialize(logcontextinfos=nil, prevover=nil, nextover=nil, requestid=nil) @LogContextInfos = logcontextinfos @PrevOver = prevover @NextOver = nextover @RequestId = requestid end |
Instance Attribute Details
#LogContextInfos ⇒ Object
8918 8919 8920 |
# File 'lib/v20201016/models.rb', line 8918 def LogContextInfos @LogContextInfos end |
#NextOver ⇒ Object
8918 8919 8920 |
# File 'lib/v20201016/models.rb', line 8918 def NextOver @NextOver end |
#PrevOver ⇒ Object
8918 8919 8920 |
# File 'lib/v20201016/models.rb', line 8918 def PrevOver @PrevOver end |
#RequestId ⇒ Object
8918 8919 8920 |
# File 'lib/v20201016/models.rb', line 8918 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 |
# File 'lib/v20201016/models.rb', line 8927 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 |