class Saklient::Cloud::Models::QueryParams

@private

Attributes

begin[RW]

@return [Fixnum]

count[RW]

@return [Fixnum]

filter[RW]

@return [any]

sort[RW]

@return [Array<String>]

Public Class Methods

new() click to toggle source
# File lib/saklient/cloud/models/query_params.rb, line 24
def initialize
  @begin = 0
  @count = 0
  @filter = {}
  @sort = []
end

Public Instance Methods

build() click to toggle source

@return [any]

# File lib/saklient/cloud/models/query_params.rb, line 32
def build
  return {
    From: @begin,
    Count: @count,
    Filter: @filter,
    Sort: @sort
  }
end