Sha256: 711f86f64f2867368166518fa3593d20ec845910d440bd4a52c76d18b6221bbf

Contents?: true

Size: 430 Bytes

Versions: 6

Compression:

Stored size: 430 Bytes

Contents

# frozen_string_literal: true

module IronBank
  module Actions
    # Query More call to Zuora REST API
    # https://www.zuora.com/developer/api-reference/#operation/Action_POSTqueryMore
    #
    class QueryMore < Action
      private

      def params
        { 'queryLocator' => args }
      end

      # NOTE: Zuora API endpoint is case-sensitive.
      def endpoint
        'v1/action/queryMore'
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
iron_bank-1.0.4 lib/iron_bank/actions/query_more.rb
iron_bank-1.0.3 lib/iron_bank/actions/query_more.rb
iron_bank-1.0.2 lib/iron_bank/actions/query_more.rb
iron_bank-1.0.1 lib/iron_bank/actions/query_more.rb
iron_bank-1.0.0 lib/iron_bank/actions/query_more.rb
iron_bank-0.7.1 lib/iron_bank/actions/query_more.rb