Class: Google::Apis::AndroidmanagementV1::WifiSsid
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::AndroidmanagementV1::WifiSsid
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/androidmanagement_v1/classes.rb,
lib/google/apis/androidmanagement_v1/representations.rb,
lib/google/apis/androidmanagement_v1/representations.rb 
Overview
Represents a Wi-Fi SSID.
Instance Attribute Summary collapse
- 
  
    
      #wifi_ssid  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ WifiSsid 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of WifiSsid.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ WifiSsid
Returns a new instance of WifiSsid.
      6492 6493 6494  | 
    
      # File 'lib/google/apis/androidmanagement_v1/classes.rb', line 6492 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#wifi_ssid ⇒ String
Required. Wi-Fi SSID represented as a string.
Corresponds to the JSON property wifiSsid
      6490 6491 6492  | 
    
      # File 'lib/google/apis/androidmanagement_v1/classes.rb', line 6490 def wifi_ssid @wifi_ssid end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      6497 6498 6499  | 
    
      # File 'lib/google/apis/androidmanagement_v1/classes.rb', line 6497 def update!(**args) @wifi_ssid = args[:wifi_ssid] if args.key?(:wifi_ssid) end  |