Sha256: e992c64babe2b5f92fba69c5e7c1322aa8a726432e0282f33188de6911a2a4fd
Contents?: true
Size: 921 Bytes
Versions: 7
Compression:
Stored size: 921 Bytes
Contents
module KatelloApi module Resources class Task < KatelloApi::Base def self.doc @doc ||= KatelloApi.doc['resources']["tasks"] end # @param [Hash] params a hash of params to be passed to the service # @option params [String] organization_id organization identifier # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def index(params = {}, headers = {}) perform_call(__method__, params, headers) end # @param [Hash] params a hash of params to be passed to the service # @option params [String] id task identifier # # @param [Hash] headers additional http headers # @return [Array] First item: parsed data; second item: raw body def show(params = {}, headers = {}) perform_call(__method__, params, headers) end end end end
Version data entries
7 entries across 7 versions & 1 rubygems