Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 712 Bytes

File metadata and controls

24 lines (18 loc) · 712 Bytes

WhatpulseSdk::LinksResource

Properties

Name Type Description Notes
first String The URL for the first page of results.
last String The URL for the last page of results.
prev String The URL for the previous page of results, or null if there is no previous page.
_next String The URL for the next page of results, or null if there is no next page. If you're paginating, you can call this url to get the next page of results.

Example

require 'whatpulse-sdk'

instance = WhatpulseSdk::LinksResource.new(
  first: null,
  last: null,
  prev: null,
  _next: null
)