class Seahorse::Model::Shapes::Integer
Attributes
max[R]
@return [Integer, nil]
min[R]
@return [Integer, nil]
Public Class Methods
new(definition, options = {})
click to toggle source
Calls superclass method
Seahorse::Model::Shapes::Shape.new
# File lib/seahorse/model/shapes.rb, line 411 def initialize(definition, options = {}) @min = definition['min'] @max = definition['max'] super end