File tree Expand file tree Collapse file tree
src/datadog_api_client/v1/model Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25943,17 +25943,17 @@ components:
2594325943 description: Used for fixed span times, such as 'March 1 to March 7'.
2594425944 properties:
2594525945 from:
25946- description: Start time in seconds since epoch.
25947- example: 1712080128
25946+ description: Start time in milliseconds since epoch.
25947+ example: 1712080128000
2594825948 format: int64
2594925949 minimum: 0
2595025950 type: integer
2595125951 hide_incomplete_cost_data:
2595225952 description: Whether to hide incomplete cost data in the widget.
2595325953 type: boolean
2595425954 to:
25955- description: End time in seconds since epoch.
25956- example: 1712083128
25955+ description: End time in milliseconds since epoch.
25956+ example: 1712083128000
2595725957 format: int64
2595825958 minimum: 0
2595925959 type: integer
Original file line number Diff line number Diff line change @@ -56,13 +56,13 @@ def __init__(
5656 """
5757 Used for fixed span times, such as 'March 1 to March 7'.
5858
59- :param _from: Start time in seconds since epoch.
59+ :param _from: Start time in milliseconds since epoch.
6060 :type _from: int
6161
6262 :param hide_incomplete_cost_data: Whether to hide incomplete cost data in the widget.
6363 :type hide_incomplete_cost_data: bool, optional
6464
65- :param to: End time in seconds since epoch.
65+ :param to: End time in milliseconds since epoch.
6666 :type to: int
6767
6868 :param type: Type "fixed" denotes a fixed span.
Original file line number Diff line number Diff line change @@ -30,10 +30,10 @@ def __init__(self, **kwargs):
3030 :param value: Value of the time span.
3131 :type value: int
3232
33- :param _from: Start time in seconds since epoch.
33+ :param _from: Start time in milliseconds since epoch.
3434 :type _from: int
3535
36- :param to: End time in seconds since epoch.
36+ :param to: End time in milliseconds since epoch.
3737 :type to: int
3838 """
3939 super ().__init__ (kwargs )
You can’t perform that action at this time.
0 commit comments