Class: TencentCloud::Ivld::V20210903::CreateCustomPersonResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ivld::V20210903::CreateCustomPersonResponse
- Defined in:
- lib/v20210903/models.rb
Overview
CreateCustomPerson返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(personid = nil, imageinfo = nil, requestid = nil) ⇒ CreateCustomPersonResponse
constructor
A new instance of CreateCustomPersonResponse.
Constructor Details
#initialize(personid = nil, imageinfo = nil, requestid = nil) ⇒ CreateCustomPersonResponse
Returns a new instance of CreateCustomPersonResponse.
436 437 438 439 440 |
# File 'lib/v20210903/models.rb', line 436 def initialize(personid=nil, imageinfo=nil, requestid=nil) @PersonId = personid @ImageInfo = imageinfo @RequestId = requestid end |
Instance Attribute Details
#ImageInfo ⇒ Object
434 435 436 |
# File 'lib/v20210903/models.rb', line 434 def ImageInfo @ImageInfo end |
#PersonId ⇒ Object
434 435 436 |
# File 'lib/v20210903/models.rb', line 434 def PersonId @PersonId end |
#RequestId ⇒ Object
434 435 436 |
# File 'lib/v20210903/models.rb', line 434 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
442 443 444 445 446 447 448 449 |
# File 'lib/v20210903/models.rb', line 442 def deserialize(params) @PersonId = params['PersonId'] unless params['ImageInfo'].nil? @ImageInfo = PersonImageInfo.new @ImageInfo.deserialize(params['ImageInfo']) end @RequestId = params['RequestId'] end |