Class: TencentCloud::Cpdp::V20190820::Paging

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

Overview

分页参数

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(index = nil, count = nil) ⇒ Paging

Returns a new instance of Paging.



13554
13555
13556
13557
# File 'lib/v20190820/models.rb', line 13554

def initialize(index=nil, count=nil)
  @Index = index
  @Count = count
end

Instance Attribute Details

#CountObject

Parameters:

  • Index:

    页码

  • Count:

    页长



13552
13553
13554
# File 'lib/v20190820/models.rb', line 13552

def Count
  @Count
end

#IndexObject

Parameters:

  • Index:

    页码

  • Count:

    页长



13552
13553
13554
# File 'lib/v20190820/models.rb', line 13552

def Index
  @Index
end

Instance Method Details

#deserialize(params) ⇒ Object



13559
13560
13561
13562
# File 'lib/v20190820/models.rb', line 13559

def deserialize(params)
  @Index = params['Index']
  @Count = params['Count']
end