> For the complete documentation index, see [llms.txt](https://docs.ionos.com/mongodb-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/mongodb-sdk-ruby/models/snapshotproperties.md).

# SnapshotProperties

## Properties

| Name               | Type        | Description                                       | Notes       |
| ------------------ | ----------- | ------------------------------------------------- | ----------- |
| **version**        | **String**  | The MongoDB version this backup was created from. | \[optional] |
| **size**           | **Integer** | The size of the snapshot in Mebibytes.            | \[optional] |
| **creation\_time** | **Time**    | The date the resource was created.                | \[optional] |

## Example

```ruby
require 'ionoscloud-dbaas-mongo'

instance = IonoscloudDbaasMongo::SnapshotProperties.new(
  version: 5.0,
  size: 150,
  creation_time: 2020-12-10T13:37:50+01:00
)
```
