Skip to content

Commit

Permalink
Regenerate client from commit 7679754f of spec repo
Browse files Browse the repository at this point in the history
  • Loading branch information
ci.datadog-api-spec committed Oct 4, 2024
1 parent 727570a commit 3571e46
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions .apigentools-info
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
"spec_versions": {
"v1": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-04 10:38:27.221073",
"spec_repo_commit": "7a63d530"
"regenerated": "2024-10-04 13:47:51.213898",
"spec_repo_commit": "7679754f"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-10-04 10:38:27.235409",
"spec_repo_commit": "7a63d530"
"regenerated": "2024-10-04 13:47:51.228316",
"spec_repo_commit": "7679754f"
}
}
}
12 changes: 6 additions & 6 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22548,18 +22548,18 @@ components:
type: integer
x:
description: The position of the widget on the x (horizontal) axis. Should
be a non-negative integer.
be a non-negative number.
example: 0
format: int64
format: double
minimum: 0
type: integer
type: number
y:
description: The position of the widget on the y (vertical) axis. Should
be a non-negative integer.
be a non-negative number.
example: 0
format: int64
format: double
minimum: 0
type: integer
type: number
required:
- x
- y
Expand Down
8 changes: 4 additions & 4 deletions lib/datadog_api_client/v1/models/widget_layout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ class WidgetLayout
# The width of the widget. Should be a non-negative integer.
attr_reader :width

# The position of the widget on the x (horizontal) axis. Should be a non-negative integer.
# The position of the widget on the x (horizontal) axis. Should be a non-negative number.
attr_reader :x

# The position of the widget on the y (vertical) axis. Should be a non-negative integer.
# The position of the widget on the y (vertical) axis. Should be a non-negative number.
attr_reader :y

attr_accessor :additional_properties
Expand All @@ -58,8 +58,8 @@ def self.openapi_types
:'height' => :'Integer',
:'is_column_break' => :'Boolean',
:'width' => :'Integer',
:'x' => :'Integer',
:'y' => :'Integer'
:'x' => :'Float',
:'y' => :'Float'
}
end

Expand Down

0 comments on commit 3571e46

Please sign in to comment.