Sha256: 9cb1eac7772fa1dfc5de209eed039a4683e48b27cce918efca2da5aedde32f4f
Contents?: true
Size: 739 Bytes
Versions: 1
Compression:
Stored size: 739 Bytes
Contents
# PaginationLinks ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **_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] | | **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] | ## Example ```ruby require 'ionoscloud' instance = Ionoscloud::PaginationLinks.new( _next: <NEXT-PAGE-URI>, prev: <PREVIOUS-PAGE-URI>, _self: <THIS-PAGE-URI> ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ionoscloud-6.1.2 | docs/models/PaginationLinks.md |