class UsabillaApi::Models::Response

Attributes

count[RW]
has_more[RW]
items[RW]
last_time_stamp[RW]

Public Class Methods

new(args = {}) click to toggle source
# File lib/usabilla_api/models/response.rb, line 6
def initialize(args = {})
  @items                 = args['items'] || Array.new
  @count                 = args['count'] || 0
  @has_more              = args['hasMore'] || false
  @last_time_stamp       = args['lastTimestamp'] || nil
end