File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed
services/on_call/src/v2/models Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -41720,7 +41720,7 @@ components:
4172041720 type: string
4172141721 type: object
4172241722 Shift:
41723- description: The definition of `Shift` object .
41723+ description: An on-call shift with its associated data and relationships .
4172441724 example:
4172541725 data:
4172641726 attributes:
@@ -41751,7 +41751,7 @@ components:
4175141751 type: array
4175241752 type: object
4175341753 ShiftData:
41754- description: The definition of `ShiftData` object .
41754+ description: Data for an on-call shift .
4175541755 properties:
4175641756 attributes:
4175741757 $ref: '#/components/schemas/ShiftDataAttributes'
@@ -41766,7 +41766,7 @@ components:
4176641766 - type
4176741767 type: object
4176841768 ShiftDataAttributes:
41769- description: The definition of `ShiftDataAttributes` object .
41769+ description: Attributes for an on-call shift .
4177041770 properties:
4177141771 end:
4177241772 description: The end time of the shift.
@@ -41778,7 +41778,7 @@ components:
4177841778 type: string
4177941779 type: object
4178041780 ShiftDataRelationships:
41781- description: The definition of `ShiftDataRelationships` object .
41781+ description: Relationships for an on-call shift .
4178241782 properties:
4178341783 user:
4178441784 $ref: '#/components/schemas/ShiftDataRelationshipsUser'
@@ -41825,7 +41825,7 @@ components:
4182541825 x-enum-varnames:
4182641826 - SHIFTS
4182741827 ShiftIncluded:
41828- description: The definition of `ShiftIncluded` object .
41828+ description: Included data for shift operations .
4182941829 oneOf:
4183041830 - $ref: '#/components/schemas/ScheduleUser'
4183141831 SimpleMonitorUserTemplate:
Original file line number Diff line number Diff line change @@ -4,11 +4,11 @@ import { ShiftData } from "./ShiftData";
44import { ShiftIncluded } from "./ShiftIncluded" ;
55
66/**
7- * The definition of `Shift` object .
7+ * An on-call shift with its associated data and relationships .
88 */
99export class Shift {
1010 /**
11- * The definition of `ShiftData` object .
11+ * Data for an on-call shift .
1212 */
1313 "data" ?: ShiftData ;
1414 /**
Original file line number Diff line number Diff line change @@ -5,19 +5,19 @@ import { ShiftDataRelationships } from "./ShiftDataRelationships";
55import { ShiftDataType } from "./ShiftDataType" ;
66
77/**
8- * The definition of `ShiftData` object .
8+ * Data for an on-call shift .
99 */
1010export class ShiftData {
1111 /**
12- * The definition of `ShiftDataAttributes` object .
12+ * Attributes for an on-call shift .
1313 */
1414 "attributes" ?: ShiftDataAttributes ;
1515 /**
1616 * The `ShiftData` `id`.
1717 */
1818 "id" ?: string ;
1919 /**
20- * The definition of `ShiftDataRelationships` object .
20+ * Relationships for an on-call shift .
2121 */
2222 "relationships" ?: ShiftDataRelationships ;
2323 /**
Original file line number Diff line number Diff line change 11import { AttributeTypeMap } from "@datadog/datadog-api-client" ;
22
33/**
4- * The definition of `ShiftDataAttributes` object .
4+ * Attributes for an on-call shift .
55 */
66export class ShiftDataAttributes {
77 /**
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { AttributeTypeMap } from "@datadog/datadog-api-client";
33import { ShiftDataRelationshipsUser } from "./ShiftDataRelationshipsUser" ;
44
55/**
6- * The definition of `ShiftDataRelationships` object .
6+ * Relationships for an on-call shift .
77 */
88export class ShiftDataRelationships {
99 /**
Original file line number Diff line number Diff line change @@ -3,6 +3,6 @@ import { UnparsedObject } from "@datadog/datadog-api-client";
33import { ScheduleUser } from "./ScheduleUser" ;
44
55/**
6- * The definition of `ShiftIncluded` object .
6+ * Included data for shift operations .
77 */
88export type ShiftIncluded = ScheduleUser | UnparsedObject ;
You can’t perform that action at this time.
0 commit comments