class WsdlMapper::Dom::Bounds

Attributes

max[RW]
min[RW]
nillable[RW]

Public Class Methods

new(min: nil, max: nil, nillable: nil) click to toggle source
# File lib/wsdl_mapper/dom/bounds.rb, line 6
def initialize(min: nil, max: nil, nillable: nil)
  @min, @max, @nillable = min, max, nillable
end

Public Instance Methods

dup() click to toggle source
# File lib/wsdl_mapper/dom/bounds.rb, line 10
def dup
  Bounds.new min: @min, max: @max, nillable: @nillable
end