Sha256: c72d3d57f8e39b5f0c63899edf14ffc10cffa030ffe7fc00ca481ba90789907b
Contents?: true
Size: 733 Bytes
Versions: 5
Compression:
Stored size: 733 Bytes
Contents
# PaginationLinks ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **prev** | **String** | URL (with offset and limit parameters) of the previous page; only present if offset is greater than 0. | [optional][readonly] | | **_self** | **String** | URL (with offset and limit parameters) of the current page. | [optional][readonly] | | **_next** | **String** | URL (with offset and limit parameters) of the next page; only present if offset + limit is less than the total number of elements. | [optional][readonly] | ## Example ```ruby require 'ionoscloud' instance = Ionoscloud::PaginationLinks.new( prev: <PREVIOUS-PAGE-URI>, _self: <THIS-PAGE-URI>, _next: <NEXT-PAGE-URI> ) ```
Version data entries
5 entries across 5 versions & 1 rubygems