Class: TencentCloud::Tci::V20190318::DeletePersonResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tci::V20190318::DeletePersonResponse
- Defined in:
- lib/v20190318/models.rb
Overview
DeletePerson返回参数结构体
Instance Attribute Summary collapse
- #FaceInfoSet ⇒ Object
- #LibraryId ⇒ Object
- #PersonId ⇒ Object
- #PersonName ⇒ Object
- #RequestId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(faceinfoset = nil, libraryid = nil, personid = nil, personname = nil, requestid = nil) ⇒ DeletePersonResponse
constructor
A new instance of DeletePersonResponse.
Constructor Details
#initialize(faceinfoset = nil, libraryid = nil, personid = nil, personname = nil, requestid = nil) ⇒ DeletePersonResponse
902 903 904 905 906 907 908 |
# File 'lib/v20190318/models.rb', line 902 def initialize(faceinfoset=nil, libraryid=nil, personid=nil, personname=nil, requestid=nil) @FaceInfoSet = faceinfoset @LibraryId = libraryid @PersonId = personid @PersonName = personname @RequestId = requestid end |
Instance Attribute Details
#FaceInfoSet ⇒ Object
900 901 902 |
# File 'lib/v20190318/models.rb', line 900 def FaceInfoSet @FaceInfoSet end |
#LibraryId ⇒ Object
900 901 902 |
# File 'lib/v20190318/models.rb', line 900 def LibraryId @LibraryId end |
#PersonId ⇒ Object
900 901 902 |
# File 'lib/v20190318/models.rb', line 900 def PersonId @PersonId end |
#PersonName ⇒ Object
900 901 902 |
# File 'lib/v20190318/models.rb', line 900 def PersonName @PersonName end |
#RequestId ⇒ Object
900 901 902 |
# File 'lib/v20190318/models.rb', line 900 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
910 911 912 913 914 915 916 917 918 919 920 921 922 923 |
# File 'lib/v20190318/models.rb', line 910 def deserialize(params) unless params['FaceInfoSet'].nil? @FaceInfoSet = [] params['FaceInfoSet'].each do |i| faceinfo_tmp = FaceInfo.new faceinfo_tmp.deserialize(i) @FaceInfoSet << faceinfo_tmp end end @LibraryId = params['LibraryId'] @PersonId = params['PersonId'] @PersonName = params['PersonName'] @RequestId = params['RequestId'] end |