Class: Abt::Providers::Devops::Services::WorkItemPicker::Result

Inherits:
Object
  • Object
show all
Defined in:
lib/abt/providers/devops/services/work_item_picker.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(work_item:, path:) ⇒ Result

Returns a new instance of Result.



11
12
13
14
# File 'lib/abt/providers/devops/services/work_item_picker.rb', line 11

def initialize(work_item:, path:)
  @work_item = work_item
  @path = path
end

Instance Attribute Details

#pathObject (readonly)

Returns the value of attribute path.



9
10
11
# File 'lib/abt/providers/devops/services/work_item_picker.rb', line 9

def path
  @path
end

#work_itemObject (readonly)

Returns the value of attribute work_item.



9
10
11
# File 'lib/abt/providers/devops/services/work_item_picker.rb', line 9

def work_item
  @work_item
end