Class: Bitrise::TestDevice

Inherits:
Object
  • Object
show all
Defined in:
lib/bitrise/test_device.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attrs = {}) ⇒ TestDevice

Returns a new instance of TestDevice.



5
6
7
8
9
# File 'lib/bitrise/test_device.rb', line 5

def initialize(attrs = {})
  @device_id = attrs['device_id']
  @device_type = attrs['device_type']
  @owner = attrs['owner']
end

Instance Attribute Details

#device_idObject

Returns the value of attribute device_id.



3
4
5
# File 'lib/bitrise/test_device.rb', line 3

def device_id
  @device_id
end

#device_typeObject

Returns the value of attribute device_type.



3
4
5
# File 'lib/bitrise/test_device.rb', line 3

def device_type
  @device_type
end

#ownerObject

Returns the value of attribute owner.



3
4
5
# File 'lib/bitrise/test_device.rb', line 3

def owner
  @owner
end