Class: TencentCloud::Cme::V20191029::IntegerRange
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::IntegerRange
- Defined in:
- lib/v20191029/models.rb
Overview
整型范围
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(lowerbound = nil, upperbound = nil) ⇒ IntegerRange
constructor
A new instance of IntegerRange.
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
#LowerBound ⇒ Object
3247 3248 3249 |
# File 'lib/v20191029/models.rb', line 3247 def LowerBound @LowerBound end |
#UpperBound ⇒ Object
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 |