Class: TencentCloud::Trp::V20210515::DescribeTraceCodeByIdResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Trp::V20210515::DescribeTraceCodeByIdResponse
- Defined in:
- lib/v20210515/models.rb
Overview
DescribeTraceCodeById返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tracecode = nil, codepath = nil, requestid = nil) ⇒ DescribeTraceCodeByIdResponse
constructor
A new instance of DescribeTraceCodeByIdResponse.
Constructor Details
#initialize(tracecode = nil, codepath = nil, requestid = nil) ⇒ DescribeTraceCodeByIdResponse
Returns a new instance of DescribeTraceCodeByIdResponse.
2820 2821 2822 2823 2824 |
# File 'lib/v20210515/models.rb', line 2820 def initialize(tracecode=nil, codepath=nil, requestid=nil) @TraceCode = tracecode @CodePath = codepath @RequestId = requestid end |
Instance Attribute Details
#CodePath ⇒ Object
2818 2819 2820 |
# File 'lib/v20210515/models.rb', line 2818 def CodePath @CodePath end |
#RequestId ⇒ Object
2818 2819 2820 |
# File 'lib/v20210515/models.rb', line 2818 def RequestId @RequestId end |
#TraceCode ⇒ Object
2818 2819 2820 |
# File 'lib/v20210515/models.rb', line 2818 def TraceCode @TraceCode end |
Instance Method Details
#deserialize(params) ⇒ Object
2826 2827 2828 2829 2830 2831 2832 2833 |
# File 'lib/v20210515/models.rb', line 2826 def deserialize(params) unless params['TraceCode'].nil? @TraceCode = TraceCode.new @TraceCode.deserialize(params['TraceCode']) end @CodePath = params['CodePath'] @RequestId = params['RequestId'] end |