Class: TencentCloud::Cwp::V20180228::DescribeBanWhiteListRequest

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

Overview

DescribeBanWhiteList请求参数结构体

Instance Attribute Summary collapse

  • #Limit ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • .
  • #Offset ⇒ Object
  • Keywords - String - 是否必填:否 - 查询关键字
  • .

    Instance Method Summary collapse

    Constructor Details

    #initialize(offset = nil, limit = nil, filters = nil) ⇒ DescribeBanWhiteListRequest

    Returns a new instance of DescribeBanWhiteListRequest.

    
    
    11531
    11532
    11533
    11534
    11535
    # File 'lib/v20180228/models.rb', line 11531
    
    def initialize(offset=nil, limit=nil, filters=nil)
      @Offset = offset
      @Limit = limit
      @Filters = filters
    end

    Instance Attribute Details

    #FiltersObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Parameters:

    • 偏移量,默认为0。

    • 返回数量,最大值为100。

    • 过滤条件。

    
    
    11529
    11530
    11531
    # File 'lib/v20180228/models.rb', line 11529
    
    def Filters
      @Filters
    end

    #LimitObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Parameters:

    • 偏移量,默认为0。

    • 返回数量,最大值为100。

    • 过滤条件。

    
    
    11529
    11530
    11531
    # File 'lib/v20180228/models.rb', line 11529
    
    def Limit
      @Limit
    end

    #OffsetObject

  • Keywords - String - 是否必填:否 - 查询关键字
  • Parameters:

    • 偏移量,默认为0。

    • 返回数量,最大值为100。

    • 过滤条件。

    
    
    11529
    11530
    11531
    # File 'lib/v20180228/models.rb', line 11529
    
    def Offset
      @Offset
    end

    Instance Method Details

    #deserialize(params) ⇒ Object

    
    
    11537
    11538
    11539
    11540
    11541
    11542
    11543
    11544
    11545
    11546
    11547
    11548
    # File 'lib/v20180228/models.rb', line 11537
    
    def deserialize(params)
      @Offset = params['Offset']
      @Limit = params['Limit']
      unless params['Filters'].nil?
        @Filters = []
        params['Filters'].each do |i|
          filter_tmp = Filter.new
          filter_tmp.deserialize(i)
          @Filters << filter_tmp
        end
      end
    end