Class: TencentCloud::Teo::V20220901::DescribeIdentificationsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20220901/models.rb

Overview

DescribeIdentifications返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#IdentificationsObject

Parameters:

  • TotalCount:

    符合条件的站点个数。

  • Identifications:

    站点验证信息列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



8947
8948
8949
# File 'lib/v20220901/models.rb', line 8947

def Identifications
  @Identifications
end

#RequestIdObject

Parameters:

  • TotalCount:

    符合条件的站点个数。

  • Identifications:

    站点验证信息列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



8947
8948
8949
# File 'lib/v20220901/models.rb', line 8947

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    符合条件的站点个数。

  • Identifications:

    站点验证信息列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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