1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# ErrorTrackingOpenAPI::MessageEvent
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **project_id** | **Integer** | | [optional] |
| **event_id** | **String** | | [optional] |
| **timestamp** | **Time** | | [optional] |
| **level** | **String** | | [optional] |
| **message** | **String** | | [optional] |
| **release** | **String** | | [optional] |
| **environment** | **String** | | [optional] |
| **platform** | **String** | | [optional] |
## Example
```ruby
require 'error_tracking_open_api'
instance = ErrorTrackingOpenAPI::MessageEvent.new(
project_id: null,
event_id: null,
timestamp: null,
level: info,
message: some message from the SDK,
release: v1.0.0,
environment: production,
platform: ruby
)
```
|