class Dogapi::Scope
Metadata class to hold the scope of an API call
Attributes
device[R]
host[R]
Public Class Methods
new(host=nil, device=nil)
click to toggle source
# File lib/dogapi/common.rb 31 def initialize(host=nil, device=nil) 32 @host = host 33 @device = device 34 end