Class: VirtualServerFTPPortRange

Inherits:
Object
  • Object
show all
Defined in:
lib/api/virtualserver/VirtualServer.rb

Overview

/VirtualServer.FTPPortRange

low - SOAP::SOAPInt
high - SOAP::SOAPInt

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(low = nil, high = nil) ⇒ VirtualServerFTPPortRange

Returns a new instance of VirtualServerFTPPortRange.



26
27
28
29
# File 'lib/api/virtualserver/VirtualServer.rb', line 26

def initialize(low = nil, high = nil)
  @low = low
  @high = high
end

Instance Attribute Details

#highObject

Returns the value of attribute high.



24
25
26
# File 'lib/api/virtualserver/VirtualServer.rb', line 24

def high
  @high
end

#lowObject

Returns the value of attribute low.



23
24
25
# File 'lib/api/virtualserver/VirtualServer.rb', line 23

def low
  @low
end