Skip to content

Files

Latest commit

538477d · Feb 18, 2025

History

History
24 lines (18 loc) · 811 Bytes

LinksObject.md

File metadata and controls

24 lines (18 loc) · 811 Bytes

Bandwidth::LinksObject

Properties

Name Type Description Notes
first String The first (or only) page of results matching the query. [optional]
_next String If more results exist than specified by 'size', this link returns the next page of 'size' results. [optional]
previous String If the results are more than one page, this link returns the previous page of 'size' results. [optional]
last String If more results exist than specified by 'size', this link return the last page of result. [optional]

Example

require 'bandwidth-sdk'

instance = Bandwidth::LinksObject.new(
  first: null,
  _next: null,
  previous: null,
  last: null
)