Class: TencentCloud::Dc::V20180410::DescribeAccessPointsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dc::V20180410::DescribeAccessPointsResponse
- Defined in:
- lib/v20180410/models.rb
Overview
DescribeAccessPoints返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(accesspointset = nil, totalcount = nil, requestid = nil) ⇒ DescribeAccessPointsResponse
constructor
A new instance of DescribeAccessPointsResponse.
Constructor Details
#initialize(accesspointset = nil, totalcount = nil, requestid = nil) ⇒ DescribeAccessPointsResponse
Returns a new instance of DescribeAccessPointsResponse.
859 860 861 862 863 |
# File 'lib/v20180410/models.rb', line 859 def initialize(accesspointset=nil, totalcount=nil, requestid=nil) @AccessPointSet = accesspointset @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#AccessPointSet ⇒ Object
857 858 859 |
# File 'lib/v20180410/models.rb', line 857 def AccessPointSet @AccessPointSet end |
#RequestId ⇒ Object
857 858 859 |
# File 'lib/v20180410/models.rb', line 857 def RequestId @RequestId end |
#TotalCount ⇒ Object
857 858 859 |
# File 'lib/v20180410/models.rb', line 857 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
865 866 867 868 869 870 871 872 873 874 875 876 |
# File 'lib/v20180410/models.rb', line 865 def deserialize(params) unless params['AccessPointSet'].nil? @AccessPointSet = [] params['AccessPointSet'].each do |i| accesspoint_tmp = AccessPoint.new accesspoint_tmp.deserialize(i) @AccessPointSet << accesspoint_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |