Class: TencentCloud::Tse::V20201207::ListFilter

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

Overview

列表过滤条件,模糊匹配

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key = nil, value = nil) ⇒ ListFilter

Returns a new instance of ListFilter.



9473
9474
9475
9476
# File 'lib/v20201207/models.rb', line 9473

def initialize(key=nil, value=nil)
  @Key = key
  @Value = value
end

Instance Attribute Details

#KeyObject

Parameters:

  • Key:

    过滤字段

  • Value:

    过滤值



9471
9472
9473
# File 'lib/v20201207/models.rb', line 9471

def Key
  @Key
end

#ValueObject

Parameters:

  • Key:

    过滤字段

  • Value:

    过滤值



9471
9472
9473
# File 'lib/v20201207/models.rb', line 9471

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



9478
9479
9480
9481
# File 'lib/v20201207/models.rb', line 9478

def deserialize(params)
  @Key = params['Key']
  @Value = params['Value']
end