Skip to content
Merged
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 .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25943,17 +25943,17 @@ components:
description: Used for fixed span times, such as 'March 1 to March 7'.
properties:
from:
description: Start time in seconds since epoch.
example: 1712080128
description: Start time in milliseconds since epoch.
example: 1712080128000
format: int64
minimum: 0
type: integer
hide_incomplete_cost_data:
description: Whether to hide incomplete cost data in the widget.
type: boolean
to:
description: End time in seconds since epoch.
example: 1712083128
description: End time in milliseconds since epoch.
example: 1712083128000
format: int64
minimum: 0
type: integer
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/model/widget_new_fixed_span.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ def __init__(
"""
Used for fixed span times, such as 'March 1 to March 7'.

:param _from: Start time in seconds since epoch.
:param _from: Start time in milliseconds since epoch.
:type _from: int

:param hide_incomplete_cost_data: Whether to hide incomplete cost data in the widget.
:type hide_incomplete_cost_data: bool, optional

:param to: End time in seconds since epoch.
:param to: End time in milliseconds since epoch.
:type to: int

:param type: Type "fixed" denotes a fixed span.
Expand Down
4 changes: 2 additions & 2 deletions src/datadog_api_client/v1/model/widget_time.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ def __init__(self, **kwargs):
:param value: Value of the time span.
:type value: int

:param _from: Start time in seconds since epoch.
:param _from: Start time in milliseconds since epoch.
:type _from: int

:param to: End time in seconds since epoch.
:param to: End time in milliseconds since epoch.
:type to: int
"""
super().__init__(kwargs)
Expand Down