Class: TencentCloud::Iai::V20180301::UpgradeGroupFaceModelVersionRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180301/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.



3260
3261
3262
3263
# File 'lib/v20180301/models.rb', line 3260

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

Instance Attribute Details

#FaceModelVersionObject

Parameters:

  • GroupId:

    需要升级的人员库ID。

  • FaceModelVersion:

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



3258
3259
3260
# File 'lib/v20180301/models.rb', line 3258

def FaceModelVersion
  @FaceModelVersion
end

#GroupIdObject

Parameters:

  • GroupId:

    需要升级的人员库ID。

  • FaceModelVersion:

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



3258
3259
3260
# File 'lib/v20180301/models.rb', line 3258

def GroupId
  @GroupId
end

Instance Method Details

#deserialize(params) ⇒ Object



3265
3266
3267
3268
# File 'lib/v20180301/models.rb', line 3265

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