Class: TencentCloud::Ivld::V20210903::AddCustomPersonImageRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ivld::V20210903::AddCustomPersonImageRequest
- Defined in:
- lib/v20210903/models.rb
Overview
AddCustomPersonImage请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(personid = nil, imageurl = nil, image = nil) ⇒ AddCustomPersonImageRequest
constructor
A new instance of AddCustomPersonImageRequest.
Constructor Details
#initialize(personid = nil, imageurl = nil, image = nil) ⇒ AddCustomPersonImageRequest
Returns a new instance of AddCustomPersonImageRequest.
31 32 33 34 35 |
# File 'lib/v20210903/models.rb', line 31 def initialize(personid=nil, imageurl=nil, image=nil) @PersonId = personid @ImageURL = imageurl @Image = image end |
Instance Attribute Details
#Image ⇒ Object
29 30 31 |
# File 'lib/v20210903/models.rb', line 29 def Image @Image end |
#ImageURL ⇒ Object
29 30 31 |
# File 'lib/v20210903/models.rb', line 29 def ImageURL @ImageURL end |
#PersonId ⇒ Object
29 30 31 |
# File 'lib/v20210903/models.rb', line 29 def PersonId @PersonId end |
Instance Method Details
#deserialize(params) ⇒ Object
37 38 39 40 41 |
# File 'lib/v20210903/models.rb', line 37 def deserialize(params) @PersonId = params['PersonId'] @ImageURL = params['ImageURL'] @Image = params['Image'] end |