Sha256: 3187f0b87b868ea138287267fb70ef1429719aeb70afd0d574330906682564aa
Contents?: true
Size: 658 Bytes
Versions: 7
Compression:
Stored size: 658 Bytes
Contents
module SlackRubyBotServer module Api module Helpers module PaginationParameters extend Grape::API::Helpers params :pagination do optional :offset, type: Integer, desc: 'Offset from which to retrieve.' optional :size, type: Integer, desc: 'Number of items to retrieve for this page or from the current offset.' optional :cursor, type: String, desc: 'Cursor for pagination.' optional :total_count, desc: 'Include total count in the response.' mutually_exclusive :offset, :cursor end ALL = %w(cursor size sort offset total_count).freeze end end end end
Version data entries
7 entries across 7 versions & 1 rubygems