Class: TencentCloud::Teo::V20220901::DescribeIdentificationsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Teo::V20220901::DescribeIdentificationsResponse
- Defined in:
- lib/v20220901/models.rb
Overview
DescribeIdentifications返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, identifications = nil, requestid = nil) ⇒ DescribeIdentificationsResponse
constructor
A new instance of DescribeIdentificationsResponse.
Constructor Details
#initialize(totalcount = nil, identifications = nil, requestid = nil) ⇒ DescribeIdentificationsResponse
Returns a new instance of DescribeIdentificationsResponse.
8949 8950 8951 8952 8953 |
# File 'lib/v20220901/models.rb', line 8949 def initialize(totalcount=nil, identifications=nil, requestid=nil) @TotalCount = totalcount @Identifications = identifications @RequestId = requestid end |
Instance Attribute Details
#Identifications ⇒ Object
8947 8948 8949 |
# File 'lib/v20220901/models.rb', line 8947 def Identifications @Identifications end |
#RequestId ⇒ Object
8947 8948 8949 |
# File 'lib/v20220901/models.rb', line 8947 def RequestId @RequestId end |
#TotalCount ⇒ Object
8947 8948 8949 |
# File 'lib/v20220901/models.rb', line 8947 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 |
# File 'lib/v20220901/models.rb', line 8955 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Identifications'].nil? @Identifications = [] params['Identifications'].each do |i| identification_tmp = Identification.new identification_tmp.deserialize(i) @Identifications << identification_tmp end end @RequestId = params['RequestId'] end |