Requests

Properties

NameTypeDescriptionNotes

id

String

The resource's unique identifier

[optional][readonly]

type

The type of object that has been created

[optional]

href

String

URL to the object representation (absolute path)

[optional][readonly]

items

Array of items in that collection

[optional][readonly]

offset

Float

the offset specified in the request (or, if none was specified, the default offset of 0)

limit

Float

the limit specified in the request (or, if none was specified use the endpoint's default pagination limit)

_links

Example

require 'ionoscloud'

instance = Ionoscloud::Requests.new(
  id: requests,
  type: "collection",
  href: <RESOURCE-URI>,
  items: null,
  offset: 0,
  limit: 1000,
  _links: null
)

Last updated