> For the complete documentation index, see [llms.txt](https://docs.ionos.com/cert-manager-sdk-ruby/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ionos.com/cert-manager-sdk-ruby/models/certificatecollectiondto.md).

# CertificateCollectionDto

## Properties

| Name        | Type                                                                                                | Description                                           | Notes                  |
| ----------- | --------------------------------------------------------------------------------------------------- | ----------------------------------------------------- | ---------------------- |
| **id**      | **String**                                                                                          | The resource ID.                                      | \[optional]\[readonly] |
| **type**    | **String**                                                                                          | The resource type.                                    | \[optional]\[readonly] |
| **href**    | **String**                                                                                          | The URL to the object representation (absolute path). | \[optional]\[readonly] |
| **items**   | [**Array\<CertificateDto>**](/cert-manager-sdk-ruby/models/certificatedto.md)                       | The list of certificates.                             | \[optional]\[readonly] |
| **offset**  | **Integer**                                                                                         | The pagination offset.                                | \[optional]\[readonly] |
| **limit**   | **Integer**                                                                                         | The pagination limit.                                 | \[optional]\[readonly] |
| **\_links** | [**CertificateCollectionDtoLinks**](/cert-manager-sdk-ruby/models/certificatecollectiondtolinks.md) |                                                       | \[optional]            |

## Example

```ruby
require 'ionoscloud-cert-manager'

instance = IonoscloudCertManager::CertificateCollectionDto.new(
  id: Certificates,
  type: collection,
  href: https://api.ionos.com/certificatemanager/certificates,
  items: null,
  offset: 10,
  limit: 100,
  _links: null
)
```
