Class: OpenHAB::Core::DTO::AbstractThingDTO
- Inherits:
 - 
      Object
      
        
- Object
 - OpenHAB::Core::DTO::AbstractThingDTO
 
 
- Defined in:
 - lib/openhab/core/dto/thing.rb
 
Overview
Adds methods to core openHAB AbstractThingDTO to make it more natural in Ruby
Instance Attribute Summary collapse
- 
  
    
      #bridge_uid  ⇒ String? 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The Bridge's UID.
 - 
  
    
      #thing_type_uid  ⇒ String 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The thing type's UID.
 - 
  
    
      #uid  ⇒ String 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    
The thing's UID.
 
Instance Attribute Details
#bridge_uid ⇒ String? (readonly)
The Bridge's UID
      23  | 
    
      # File 'lib/openhab/core/dto/thing.rb', line 23 alias_method :bridge_uid, :bridgeUID  | 
  
#thing_type_uid ⇒ String (readonly)
The thing type's UID
      18  | 
    
      # File 'lib/openhab/core/dto/thing.rb', line 18 alias_method :thing_type_uid, :thingTypeUID  | 
  
#uid ⇒ String (readonly)
The thing's UID
      13  | 
    
      # File 'lib/openhab/core/dto/thing.rb', line 13 alias_method :uid, :UID  |