From b595cb0c1dec83de5bdee18284abe86614bed33b Mon Sep 17 00:00:00 2001 From: GitLab Bot Date: Wed, 20 Jul 2022 15:40:28 +0000 Subject: Add latest changes from gitlab-org/gitlab@15-2-stable-ee --- vendor/gems/error_tracking_open_api/docs/Error.md | 36 +++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 vendor/gems/error_tracking_open_api/docs/Error.md (limited to 'vendor/gems/error_tracking_open_api/docs/Error.md') 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 +) +``` + -- cgit v1.2.3