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.



9455
9456
9457
9458
# File 'lib/v20201207/models.rb', line 9455

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

Instance Attribute Details

#KeyObject

Parameters:

  • Key:

    过滤字段

  • Value:

    过滤值



9453
9454
9455
# File 'lib/v20201207/models.rb', line 9453

def Key
  @Key
end

#ValueObject

Parameters:

  • Key:

    过滤字段

  • Value:

    过滤值



9453
9454
9455
# File 'lib/v20201207/models.rb', line 9453

def Value
  @Value
end

Instance Method Details

#deserialize(params) ⇒ Object



9460
9461
9462
9463
# File 'lib/v20201207/models.rb', line 9460

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