# Metadata

## Properties

| Name                             | Type                                                                                                | Description                                        | Notes       |
| -------------------------------- | --------------------------------------------------------------------------------------------------- | -------------------------------------------------- | ----------- |
| **created\_date**                | **Time**                                                                                            | The date the resource was created.                 | \[optional] |
| **created\_by**                  | **String**                                                                                          | The user who created the resource.                 | \[optional] |
| **created\_by\_user\_id**        | **String**                                                                                          | The ID of the user who created the resource.       | \[optional] |
| **last\_modified\_date**         | **Time**                                                                                            | The date the resource was last modified.           | \[optional] |
| **last\_modified\_by**           | **String**                                                                                          | The last user who modified the resource.           | \[optional] |
| **last\_modified\_by\_user\_id** | **String**                                                                                          | The ID of the user who last modified the resource. | \[optional] |
| **state**                        | [**State**](https://docs.ionos.com/sections-test/ruby-sdk/dbaas-mongo-ruby-sdk/models/state)        |                                                    | \[optional] |
| **health**                       | [**Health**](https://github.com/ionos-cloud/sdk-ruby-dbaas-mongo/blob/master/docs/models/Health.md) |                                                    | \[optional] |

## Example

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

instance = IonoscloudDbaasMongo::Metadata.new(
  created_date: 2020-12-10T13:37:50+01:00,
  created_by: john.doe@example.com,
  created_by_user_id: 87f9a82e-b28d-49ed-9d04-fba2c0459cd3,
  last_modified_date: 2020-12-11T13:37:50+01:00,
  last_modified_by: jane.doe@example.com,
  last_modified_by_user_id: 87f9a82e-b28d-49ed-9d04-fba2c0459cd3,
  state: null,
  health: null
)
```
