# Metadata

## Properties

| Name                             | Type                                                                                            | Description                      | Notes       |
| -------------------------------- | ----------------------------------------------------------------------------------------------- | -------------------------------- | ----------- |
| **created\_date**                | **Time**                                                                                        | The ISO 8601 creation timestamp. | \[optional] |
| **created\_by**                  | **String**                                                                                      |                                  | \[optional] |
| **created\_by\_user\_id**        | **String**                                                                                      |                                  | \[optional] |
| **last\_modified\_date**         | **Time**                                                                                        | The ISO 8601 modified timestamp. | \[optional] |
| **last\_modified\_by**           | **String**                                                                                      |                                  | \[optional] |
| **last\_modified\_by\_user\_id** | **String**                                                                                      |                                  | \[optional] |
| **state**                        | [**State**](https://docs.ionos.com/sections-test/ruby-sdk/dbaas-postgres-ruby-sdk/models/state) |                                  | \[optional] |

## Example

```ruby
require 'ionoscloud-dbaas-postgres'

instance = IonoscloudDbaasPostgres::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
)
```
