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:
Diffstat (limited to 'gems/error_tracking_open_api/docs/ErrorV2.md')
-rw-r--r--gems/error_tracking_open_api/docs/ErrorV2.md34
1 files changed, 34 insertions, 0 deletions
diff --git a/gems/error_tracking_open_api/docs/ErrorV2.md b/gems/error_tracking_open_api/docs/ErrorV2.md
new file mode 100644
index 00000000000..77aa58e601c
--- /dev/null
+++ b/gems/error_tracking_open_api/docs/ErrorV2.md
@@ -0,0 +1,34 @@
+# ErrorTrackingOpenAPI::ErrorV2
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **id** | **String** | | [optional] |
+| **project** | [**Project**](Project.md) | | [optional] |
+| **title** | **String** | | [optional] |
+| **actor** | **String** | | [optional] |
+| **count** | **String** | | [optional] |
+| **user_count** | **Integer** | | [optional] |
+| **last_seen** | **Time** | | [optional] |
+| **first_seen** | **Time** | | [optional] |
+| **status** | **String** | Status of the error | [optional] |
+
+## Example
+
+```ruby
+require 'error_tracking_open_api'
+
+instance = ErrorTrackingOpenAPI::ErrorV2.new(
+ id: null,
+ project: null,
+ title: ActionView::MissingTemplate,
+ actor: PostsController#edit,
+ count: null,
+ user_count: null,
+ last_seen: null,
+ first_seen: null,
+ status: null
+)
+```
+