Sha256: 1f0d6f758daa45ed4c6c9e345ea00d53677589c3378e3da8b38ee0e4a449c3d5

Contents?: true

Size: 730 Bytes

Versions: 8

Compression:

Stored size: 730 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

8 entries across 8 versions & 1 rubygems

Version Path
ionoscloud-5.1.2 docs/models/PaginationLinks.md
ionoscloud-6.0.0.beta.4 docs/models/PaginationLinks.md
ionoscloud-5.1.1 docs/models/PaginationLinks.md
ionoscloud-6.0.0.beta.3 docs/PaginationLinks.md
ionoscloud-5.1.0 docs/PaginationLinks.md
ionoscloud-6.0.0.beta.2 docs/PaginationLinks.md
ionoscloud-5.0.1 docs/PaginationLinks.md
ionoscloud-6.0.0.beta.1 docs/PaginationLinks.md