Class: TencentCloud::Iai::V20200303::UpgradeGroupFaceModelVersionRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20200303/models.rb

Overview

UpgradeGroupFaceModelVersion请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(groupid = nil, facemodelversion = nil) ⇒ UpgradeGroupFaceModelVersionRequest

Returns a new instance of UpgradeGroupFaceModelVersionRequest.



3672
3673
3674
3675
# File 'lib/v20200303/models.rb', line 3672

def initialize(groupid=nil, facemodelversion=nil)
  @GroupId = groupid
  @FaceModelVersion = facemodelversion
end

Instance Attribute Details

#FaceModelVersionObject

Parameters:

  • GroupId:

    需要升级的人员库ID。

  • FaceModelVersion:

    需要升级至的算法模型版本。默认为最新版本。不可逆向升级



3670
3671
3672
# File 'lib/v20200303/models.rb', line 3670

def FaceModelVersion
  @FaceModelVersion
end

#GroupIdObject

Parameters:

  • GroupId:

    需要升级的人员库ID。

  • FaceModelVersion:

    需要升级至的算法模型版本。默认为最新版本。不可逆向升级



3670
3671
3672
# File 'lib/v20200303/models.rb', line 3670

def GroupId
  @GroupId
end

Instance Method Details

#deserialize(params) ⇒ Object



3677
3678
3679
3680
# File 'lib/v20200303/models.rb', line 3677

def deserialize(params)
  @GroupId = params['GroupId']
  @FaceModelVersion = params['FaceModelVersion']
end