Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-12-05 16:15:46.951465",
"spec_repo_commit": "843392e2"
"regenerated": "2024-12-05 20:46:10.932892",
"spec_repo_commit": "fb5856bc"
},
"v2": {
"apigentools_version": "1.6.6",
"regenerated": "2024-12-05 16:15:46.970433",
"spec_repo_commit": "843392e2"
"regenerated": "2024-12-05 20:46:10.951568",
"spec_repo_commit": "fb5856bc"
}
}
}
12 changes: 6 additions & 6 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22799,18 +22799,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
Loading