File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
src/resources/MachineLearning/UserActionHistoryConfiguration Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 1
1
import API from '../../../APICore.js' ;
2
2
import Resource from '../../Resource.js' ;
3
3
4
+ /**
5
+ * @deprecated Will be removed from the API in January 2025
6
+ */
4
7
export default class UserActionHistoryConfiguration extends Resource {
5
8
static baseUrl = `/rest/organizations/${ API . orgPlaceholder } /machinelearning/configuration/useractionhistory` ;
6
9
10
+ /**
11
+ * @deprecated
12
+ */
7
13
create ( ) {
8
14
return this . api . post < void > ( UserActionHistoryConfiguration . baseUrl ) ;
9
15
}
10
16
17
+ /**
18
+ * @deprecated
19
+ */
11
20
delete ( ) {
12
21
return this . api . delete < void > ( UserActionHistoryConfiguration . baseUrl ) ;
13
22
}
14
23
24
+ /**
25
+ * @deprecated
26
+ */
15
27
get ( ) {
16
28
return this . api . get < boolean > ( UserActionHistoryConfiguration . baseUrl ) ;
17
29
}
You can’t perform that action at this time.
0 commit comments