Sha256: 180e8c7cfe993e21e30cf564ff54e64bc6ee99b7bc70cd10b7338373ab6b390e

Contents?: true

Size: 378 Bytes

Versions: 3

Compression:

Stored size: 378 Bytes

Contents

require_relative 'base'
module Taric
  module Operation
    module Match
      include Taric::Operation::Base

      MATCH_VERSION = 'v2.2'
      MATCH = Addressable::Template.new "#{BASE_URL_FN.(MATCH_VERSION)}/match/{matchId}"

      def match(id:, include_timeline: nil)
        response_for MATCH, {matchId: id, includeTimeline: include_timeline}
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
taric-0.1.4 lib/taric/operation/match.rb
taric-0.1.2 lib/taric/operation/match.rb
taric-0.1.1 lib/taric/operation/match.rb