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/StatsObject.md')
-rw-r--r--gems/error_tracking_open_api/docs/StatsObject.md24
1 files changed, 24 insertions, 0 deletions
diff --git a/gems/error_tracking_open_api/docs/StatsObject.md b/gems/error_tracking_open_api/docs/StatsObject.md
new file mode 100644
index 00000000000..ef3007aecd0
--- /dev/null
+++ b/gems/error_tracking_open_api/docs/StatsObject.md
@@ -0,0 +1,24 @@
+# ErrorTrackingOpenAPI::StatsObject
+
+## Properties
+
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **start** | **String** | ID of the project | [optional] |
+| **_end** | **String** | Name of the project | [optional] |
+| **interval** | **Array<String>** | Slug of the project | [optional] |
+| **group** | [**Array<StatsObjectGroupInner>**](StatsObjectGroupInner.md) | | [optional] |
+
+## Example
+
+```ruby
+require 'error_tracking_open_api'
+
+instance = ErrorTrackingOpenAPI::StatsObject.new(
+ start: null,
+ _end: null,
+ interval: null,
+ group: null
+)
+```
+