File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 4
4
"spec_versions": {
5
5
"v1": {
6
6
"apigentools_version": "1.6.6",
7
- "regenerated": "2024-03-19 16: 19:41.095343 ",
8
- "spec_repo_commit": "a75cff58 "
7
+ "regenerated": "2024-03-19 19:35:57.266326 ",
8
+ "spec_repo_commit": "a7489f2d "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.6",
12
- "regenerated": "2024-03-19 16: 19:41.110976 ",
13
- "spec_repo_commit": "a75cff58 "
12
+ "regenerated": "2024-03-19 19:35:57.281471 ",
13
+ "spec_repo_commit": "a7489f2d "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -22320,6 +22320,11 @@ components:
22320
22320
items:
22321
22321
$ref: '#/components/schemas/UserTeam'
22322
22322
type: array
22323
+ included:
22324
+ description: Resources related to the team memberships
22325
+ items:
22326
+ $ref: '#/components/schemas/UserTeamIncluded'
22327
+ type: array
22323
22328
links:
22324
22329
$ref: '#/components/schemas/TeamsResponseLinks'
22325
22330
meta:
Original file line number Diff line number Diff line change 6
6
import { TeamsResponseLinks } from "./TeamsResponseLinks" ;
7
7
import { TeamsResponseMeta } from "./TeamsResponseMeta" ;
8
8
import { UserTeam } from "./UserTeam" ;
9
+ import { UserTeamIncluded } from "./UserTeamIncluded" ;
9
10
10
11
import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
11
12
@@ -17,6 +18,10 @@ export class UserTeamsResponse {
17
18
* Team memberships response data
18
19
*/
19
20
"data" ?: Array < UserTeam > ;
21
+ /**
22
+ * Resources related to the team memberships
23
+ */
24
+ "included" ?: Array < UserTeamIncluded > ;
20
25
/**
21
26
* Teams response links.
22
27
*/
@@ -46,6 +51,10 @@ export class UserTeamsResponse {
46
51
baseName : "data" ,
47
52
type : "Array<UserTeam>" ,
48
53
} ,
54
+ included : {
55
+ baseName : "included" ,
56
+ type : "Array<UserTeamIncluded>" ,
57
+ } ,
49
58
links : {
50
59
baseName : "links" ,
51
60
type : "TeamsResponseLinks" ,
You can’t perform that action at this time.
0 commit comments