mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-08-10 03:00:46 +00:00
845 B
845 B
ErrorTrackingOpenAPI::ErrorEvent
Properties
Name | Type | Description | Notes |
---|---|---|---|
fingerprint | Integer | [optional] | |
project_id | Integer | [optional] | |
payload | String | JSON encoded string | [optional] |
name | String | [optional] | |
description | String | [optional] | |
actor | String | [optional] | |
environment | String | [optional] | |
platform | String | [optional] |
Example
require 'error_tracking_open_api'
instance = ErrorTrackingOpenAPI::ErrorEvent.new(
fingerprint: null,
project_id: null,
payload: null,
name: ActionView::MissingTemplate,
description: Missing template posts/edit,
actor: PostsController#edit,
environment: production,
platform: ruby
)