File tree Expand file tree Collapse file tree 3 files changed +15
-4
lines changed
packages/datadog-api-client-v2/models Expand file tree Collapse file tree 3 files changed +15
-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.5",
7
- "regenerated": "2023-07-18 19:28:49.350850 ",
8
- "spec_repo_commit": "0259ae38 "
7
+ "regenerated": "2023-07-19 18:05:03.090949 ",
8
+ "spec_repo_commit": "e9066fe1 "
9
9
},
10
10
"v2": {
11
11
"apigentools_version": "1.6.5",
12
- "regenerated": "2023-07-18 19:28:49.369703 ",
13
- "spec_repo_commit": "0259ae38 "
12
+ "regenerated": "2023-07-19 18:05:03.104671 ",
13
+ "spec_repo_commit": "e9066fe1 "
14
14
}
15
15
}
16
16
}
Original file line number Diff line number Diff line change @@ -16701,6 +16701,8 @@ components:
16701
16701
id:
16702
16702
description: ID of the user invitation.
16703
16703
type: string
16704
+ relationships:
16705
+ $ref: '#/components/schemas/UserInvitationRelationships'
16704
16706
type:
16705
16707
$ref: '#/components/schemas/UserInvitationsType'
16706
16708
type: object
Original file line number Diff line number Diff line change 4
4
* Copyright 2020-Present Datadog, Inc.
5
5
*/
6
6
import { UserInvitationDataAttributes } from "./UserInvitationDataAttributes" ;
7
+ import { UserInvitationRelationships } from "./UserInvitationRelationships" ;
7
8
import { UserInvitationsType } from "./UserInvitationsType" ;
8
9
9
10
import { AttributeTypeMap } from "../../datadog-api-client-common/util" ;
@@ -20,6 +21,10 @@ export class UserInvitationResponseData {
20
21
* ID of the user invitation.
21
22
*/
22
23
"id" ?: string ;
24
+ /**
25
+ * Relationships data for user invitation.
26
+ */
27
+ "relationships" ?: UserInvitationRelationships ;
23
28
/**
24
29
* User invitations type.
25
30
*/
@@ -42,6 +47,10 @@ export class UserInvitationResponseData {
42
47
baseName : "id" ,
43
48
type : "string" ,
44
49
} ,
50
+ relationships : {
51
+ baseName : "relationships" ,
52
+ type : "UserInvitationRelationships" ,
53
+ } ,
45
54
type : {
46
55
baseName : "type" ,
47
56
type : "UserInvitationsType" ,
You can’t perform that action at this time.
0 commit comments