class Elasticsearch::Model::Extensions::AssociationPathFinding::ShortestPath::Edge

Public Class Methods

new(name:, destination:) click to toggle source
# File lib/elasticsearch/model/extensions/association_path_finding/shortest_path.rb, line 49
def initialize(name:, destination:)
  @name = name
  @destination = destination
end

Public Instance Methods

destination() click to toggle source
# File lib/elasticsearch/model/extensions/association_path_finding/shortest_path.rb, line 58
def destination
  @destination
end
name() click to toggle source
# File lib/elasticsearch/model/extensions/association_path_finding/shortest_path.rb, line 54
def name
  @name
end