Class: TencentCloud::Youmall::V20180228::DescribeFaceIdByTempIdResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Youmall::V20180228::DescribeFaceIdByTempIdResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeFaceIdByTempId返回参数结构体
Instance Attribute Summary collapse
- #CameraId ⇒ Object
- #CompanyId ⇒ Object
- #FaceId ⇒ Object
- #PersonInfo ⇒ Object
- #PosId ⇒ Object
- #RequestId ⇒ Object
- #ShopId ⇒ Object
- #TempId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(companyid = nil, shopid = nil, cameraid = nil, posid = nil, tempid = nil, faceid = nil, personinfo = nil, requestid = nil) ⇒ DescribeFaceIdByTempIdResponse
constructor
A new instance of DescribeFaceIdByTempIdResponse.
Constructor Details
#initialize(companyid = nil, shopid = nil, cameraid = nil, posid = nil, tempid = nil, faceid = nil, personinfo = nil, requestid = nil) ⇒ DescribeFaceIdByTempIdResponse
Returns a new instance of DescribeFaceIdByTempIdResponse.
552 553 554 555 556 557 558 559 560 561 |
# File 'lib/v20180228/models.rb', line 552 def initialize(companyid=nil, shopid=nil, cameraid=nil, posid=nil, tempid=nil, faceid=nil, personinfo=nil, requestid=nil) @CompanyId = companyid @ShopId = shopid @CameraId = cameraid @PosId = posid @TempId = tempid @FaceId = faceid @PersonInfo = personinfo @RequestId = requestid end |
Instance Attribute Details
#CameraId ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def CameraId @CameraId end |
#CompanyId ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def CompanyId @CompanyId end |
#FaceId ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def FaceId @FaceId end |
#PersonInfo ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def PersonInfo @PersonInfo end |
#PosId ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def PosId @PosId end |
#RequestId ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def RequestId @RequestId end |
#ShopId ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def ShopId @ShopId end |
#TempId ⇒ Object
550 551 552 |
# File 'lib/v20180228/models.rb', line 550 def TempId @TempId end |
Instance Method Details
#deserialize(params) ⇒ Object
563 564 565 566 567 568 569 570 571 572 573 574 575 |
# File 'lib/v20180228/models.rb', line 563 def deserialize(params) @CompanyId = params['CompanyId'] @ShopId = params['ShopId'] @CameraId = params['CameraId'] @PosId = params['PosId'] @TempId = params['TempId'] @FaceId = params['FaceId'] unless params['PersonInfo'].nil? @PersonInfo = PersonInfo.new @PersonInfo.deserialize(params['PersonInfo']) end @RequestId = params['RequestId'] end |