Sha256: f7b970ce4067ff7e7ed8d743b54cff830d2a831754e95dc495303164fd711760

Contents?: true

Size: 1.03 KB

Versions: 1

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true
# This file was auto-generated by lib/tasks/web.rake

module Slack
  module Web
    module Api
      module Endpoints
        module FunctionsWorkflowsSteps
          #
          # List the steps of a specific function of a workflow's versions
          #
          # @option options [string] :function_id
          #   .
          # @option options [string] :workflow
          #   The workflow encoded ID or workflow reference.
          # @option options [string] :workflow_id
          #   The workflow ID, starts with Wf*.
          # @see https://api.slack.com/methods/functions.workflows.steps.list
          # @see https://github.com/slack-ruby/slack-api-ref/blob/master/methods/functions.workflows.steps/functions.workflows.steps.list.json
          def functions_workflows_steps_list(options = {})
            raise ArgumentError, 'Required arguments :function_id missing' if options[:function_id].nil?
            post('functions.workflows.steps.list', options)
          end
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
slack-ruby-client-2.1.0 lib/slack/web/api/endpoints/functions_workflows_steps.rb