class LeanTesting::PlatformOSVersionsHandler
Public Class Methods
new(origin, osID)
click to toggle source
Calls superclass method
LeanTesting::EntityHandler::new
# File lib/Handler/Platform/PlatformOSVersionsHandler.rb, line 4 def initialize(origin, osID) super(origin) @osID = osID end
Public Instance Methods
all(filters = nil)
click to toggle source
Calls superclass method
LeanTesting::EntityHandler#all
# File lib/Handler/Platform/PlatformOSVersionsHandler.rb, line 10 def all(filters = nil) if !filters filters = {} end super request = APIRequest.new(@origin, '/v1/platform/os/' + @osID.to_s() + '/versions', 'GET') EntityList.new(@origin, request, PlatformOSVersion, filters) end