Class: TencentCloud::Cme::V20191029::IntegerRange

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

Overview

整型范围

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(lowerbound = nil, upperbound = nil) ⇒ IntegerRange

Returns a new instance of IntegerRange.



3249
3250
3251
3252
# File 'lib/v20191029/models.rb', line 3249

def initialize(lowerbound=nil, upperbound=nil)
  @LowerBound = lowerbound
  @UpperBound = upperbound
end

Instance Attribute Details

#LowerBoundObject

Parameters:

  • LowerBound:

    按整形代表值的下限检索。

  • UpperBound:

    按整形代表值的上限检索。



3247
3248
3249
# File 'lib/v20191029/models.rb', line 3247

def LowerBound
  @LowerBound
end

#UpperBoundObject

Parameters:

  • LowerBound:

    按整形代表值的下限检索。

  • UpperBound:

    按整形代表值的上限检索。



3247
3248
3249
# File 'lib/v20191029/models.rb', line 3247

def UpperBound
  @UpperBound
end

Instance Method Details

#deserialize(params) ⇒ Object



3254
3255
3256
3257
# File 'lib/v20191029/models.rb', line 3254

def deserialize(params)
  @LowerBound = params['LowerBound']
  @UpperBound = params['UpperBound']
end