Class: TencentCloud::Bda::V20200324::DetectBodyJointsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bda::V20200324::DetectBodyJointsResponse
- Defined in:
- lib/v20200324/models.rb
Overview
DetectBodyJoints返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(bodyjointsresults = nil, requestid = nil) ⇒ DetectBodyJointsResponse
constructor
A new instance of DetectBodyJointsResponse.
Constructor Details
#initialize(bodyjointsresults = nil, requestid = nil) ⇒ DetectBodyJointsResponse
Returns a new instance of DetectBodyJointsResponse.
705 706 707 708 |
# File 'lib/v20200324/models.rb', line 705 def initialize(bodyjointsresults=nil, requestid=nil) @BodyJointsResults = bodyjointsresults @RequestId = requestid end |
Instance Attribute Details
#BodyJointsResults ⇒ Object
703 704 705 |
# File 'lib/v20200324/models.rb', line 703 def BodyJointsResults @BodyJointsResults end |
#RequestId ⇒ Object
703 704 705 |
# File 'lib/v20200324/models.rb', line 703 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
710 711 712 713 714 715 716 717 718 719 720 |
# File 'lib/v20200324/models.rb', line 710 def deserialize(params) unless params['BodyJointsResults'].nil? @BodyJointsResults = [] params['BodyJointsResults'].each do |i| bodyjointsresult_tmp = BodyJointsResult.new bodyjointsresult_tmp.deserialize(i) @BodyJointsResults << bodyjointsresult_tmp end end @RequestId = params['RequestId'] end |