class SentrySummary::Response

Attributes

body[R]

Public Class Methods

new(body, next_link) click to toggle source
# File lib/sentry-summary/sentry.rb, line 78
def initialize(body, next_link)
  @body = body
  @next_link = next_link
end

Public Instance Methods

cursor() click to toggle source
# File lib/sentry-summary/sentry.rb, line 83
def cursor
  @next_link && @next_link.cursor
end
next?() click to toggle source
# File lib/sentry-summary/sentry.rb, line 87
def next?
  !cursor.nil?
end