Sha256: 361a8b9fd427f2e753a8b163693f54d022c972544e3580b3ab6c51e9d9eb3a60
Contents?: true
Size: 845 Bytes
Versions: 2
Compression:
Stored size: 845 Bytes
Contents
module WlcSnmp class ClientData def initialize(ip_address: , mac_address: nil, wlan_profile: nil, protocol: nil, ap_mac: nil, uptime: nil, current_rate: nil, supported_data_rates: nil, user: nil, ssid: nil, ap: nil) @ip_address = ip_address @mac_address = mac_address @wlan_profile = wlan_profile @protocol = protocol @ap_mac = ap_mac @uptime = uptime @current_rate = current_rate @supported_data_rates = supported_data_rates @user = user @ssid = ssid @ap = ap end attr_reader :ip_address attr_reader :mac_address attr_reader :wlan_profile attr_reader :protocol attr_reader :ap_mac attr_reader :uptime attr_reader :current_rate attr_reader :supported_data_rates attr_reader :user attr_reader :ssid attr_reader :ap end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
wlc_snmp-0.1.1 | lib/wlc_snmp/client_data.rb |
wlc_snmp-0.1.0 | lib/wlc_snmp/client_data.rb |