This commit is contained in:
10
dist/services/StatsClientService.js
vendored
10
dist/services/StatsClientService.js
vendored
@@ -6,7 +6,7 @@ class StatsClientService {
|
||||
/**
|
||||
* Get all
|
||||
* Lists all stats clients. Please remember that the key can only be viewed on creation.
|
||||
* @result ResponseStatsClient
|
||||
* @returns ResponseStatsClient
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async statsClientControllerGetAll() {
|
||||
@@ -20,7 +20,7 @@ class StatsClientService {
|
||||
* Post
|
||||
* Create a new stats client. <br> Please remember that the client's key will be generated automaticly and that it can only be viewed on creation.
|
||||
* @param requestBody CreateStatsClient
|
||||
* @result ResponseStatsClient
|
||||
* @returns ResponseStatsClient
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async statsClientControllerPost(requestBody) {
|
||||
@@ -35,7 +35,7 @@ class StatsClientService {
|
||||
* Get one
|
||||
* Lists all information about the stats client whose id got provided. Please remember that the key can only be viewed on creation.
|
||||
* @param id
|
||||
* @result ResponseStatsClient
|
||||
* @returns ResponseStatsClient
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async statsClientControllerGetOne(id) {
|
||||
@@ -50,8 +50,8 @@ class StatsClientService {
|
||||
* Delete the stats client whose id you provided. <br> If no client with this id exists it will just return 204(no content).
|
||||
* @param id
|
||||
* @param force
|
||||
* @result ResponseStatsClient
|
||||
* @result ResponseEmpty
|
||||
* @returns ResponseStatsClient
|
||||
* @returns ResponseEmpty
|
||||
* @throws ApiError
|
||||
*/
|
||||
static async statsClientControllerRemove(id, force) {
|
||||
|
||||
Reference in New Issue
Block a user