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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-07-20 18:40:28 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-07-20 18:40:28 +0300
commitb595cb0c1dec83de5bdee18284abe86614bed33b (patch)
tree8c3d4540f193c5ff98019352f554e921b3a41a72 /vendor/gems/error_tracking_open_api/docs/Error.md
parent2f9104a328fc8a4bddeaa4627b595166d24671d0 (diff)
Add latest changes from gitlab-org/gitlab@15-2-stable-eev15.2.0-rc42
Diffstat (limited to 'vendor/gems/error_tracking_open_api/docs/Error.md')
-rw-r--r--vendor/gems/error_tracking_open_api/docs/Error.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/vendor/gems/error_tracking_open_api/docs/Error.md b/vendor/gems/error_tracking_open_api/docs/Error.md
new file mode 100644
index 00000000000..45aa4cf6b8a
--- /dev/null
+++ b/vendor/gems/error_tracking_open_api/docs/Error.md
@@ -0,0 +1,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
+)
+```
+