Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Error.md « docs « error_tracking_open_api « gems « vendor - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45aa4cf6b8a24e48394758bd507dd35e7bd03db3 (plain)
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
33
34
35
36
# ErrorTrackingOpenAPI::Error

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **fingerprint** | **Integer** |  | [optional] |
| **project_id** | **Integer** |  | [optional] |
| **name** | **String** |  | [optional] |
| **description** | **String** |  | [optional] |
| **actor** | **String** |  | [optional] |
| **event_count** | **Integer** |  | [optional] |
| **approximated_user_count** | **Integer** |  | [optional] |
| **last_seen_at** | **Time** |  | [optional] |
| **first_seen_at** | **Time** |  | [optional] |
| **status** | **String** | Status of the error | [optional] |

## Example

```ruby
require 'error_tracking_open_api'

instance = ErrorTrackingOpenAPI::Error.new(
  fingerprint: null,
  project_id: null,
  name: ActionView::MissingTemplate,
  description: Missing template posts/edit,
  actor: PostsController#edit,
  event_count: null,
  approximated_user_count: null,
  last_seen_at: null,
  first_seen_at: null,
  status: null
)
```