@drxsuperapp/sdk 1.1.249 → 1.1.251
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +27 -0
- package/apis/GarudakuApi.ts +792 -0
- package/apis/index.ts +1 -0
- package/deploy.log +93 -9
- package/dist/apis/GarudakuApi.d.ts +193 -0
- package/dist/apis/GarudakuApi.js +543 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/models/ApiGarudakuGameTopupsGet200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuGameTopupsGet200Response.js +54 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObject.d.ts +57 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObject.js +60 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.d.ts +74 -0
- package/dist/models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.js +67 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameter.d.ts +60 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameter.js +53 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.d.ts +32 -0
- package/dist/models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.js +41 -0
- package/dist/models/ApiGarudakuGameTopupsIdDelete200Response.d.ts +44 -0
- package/dist/models/ApiGarudakuGameTopupsIdDelete200Response.js +45 -0
- package/dist/models/ApiGarudakuGameTopupsPost200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuGameTopupsPost200Response.js +54 -0
- package/dist/models/ApiGarudakuTournamentsGet200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuTournamentsGet200Response.js +54 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObject.d.ts +57 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObject.js +60 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.d.ts +76 -0
- package/dist/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.js +74 -0
- package/dist/models/ApiGarudakuTournamentsGetFilterParameter.d.ts +65 -0
- package/dist/models/ApiGarudakuTournamentsGetFilterParameter.js +54 -0
- package/dist/models/ApiGarudakuTournamentsIdDelete200Response.d.ts +44 -0
- package/dist/models/ApiGarudakuTournamentsIdDelete200Response.js +45 -0
- package/dist/models/ApiGarudakuTournamentsPost200Response.d.ts +51 -0
- package/dist/models/ApiGarudakuTournamentsPost200Response.js +54 -0
- package/dist/models/ApiGarudakuTournamentsRefreshCachePost200Response.d.ts +38 -0
- package/dist/models/ApiGarudakuTournamentsRefreshCachePost200Response.js +43 -0
- package/dist/models/CreateGameTopupRequest.d.ts +56 -0
- package/dist/models/CreateGameTopupRequest.js +55 -0
- package/dist/models/CreateTournamentRequest.d.ts +58 -0
- package/dist/models/CreateTournamentRequest.js +62 -0
- package/dist/models/GameTopup.d.ts +74 -0
- package/dist/models/GameTopup.js +67 -0
- package/dist/models/GameTopupList.d.ts +57 -0
- package/dist/models/GameTopupList.js +60 -0
- package/dist/models/QueryGameTopupList.d.ts +33 -0
- package/dist/models/QueryGameTopupList.js +44 -0
- package/dist/models/QueryGameTopupListQuery.d.ts +52 -0
- package/dist/models/QueryGameTopupListQuery.js +48 -0
- package/dist/models/QueryTournamentList.d.ts +33 -0
- package/dist/models/QueryTournamentList.js +44 -0
- package/dist/models/QueryTournamentListQuery.d.ts +52 -0
- package/dist/models/QueryTournamentListQuery.js +48 -0
- package/dist/models/Tournament.d.ts +76 -0
- package/dist/models/Tournament.js +74 -0
- package/dist/models/TournamentList.d.ts +57 -0
- package/dist/models/TournamentList.js +60 -0
- package/dist/models/UpdateGameTopupRequest.d.ts +56 -0
- package/dist/models/UpdateGameTopupRequest.js +49 -0
- package/dist/models/UpdateTournamentRequest.d.ts +58 -0
- package/dist/models/UpdateTournamentRequest.js +54 -0
- package/dist/models/index.d.ts +26 -0
- package/dist/models/index.js +26 -0
- package/models/ApiGarudakuGameTopupsGet200Response.ts +100 -0
- package/models/ApiGarudakuGameTopupsGet200ResponseResponseObject.ts +110 -0
- package/models/ApiGarudakuGameTopupsGet200ResponseResponseObjectItemsInner.ts +127 -0
- package/models/ApiGarudakuGameTopupsGetFilterParameter.ts +126 -0
- package/models/ApiGarudakuGameTopupsGetFilterParameterIsPopular.ts +65 -0
- package/models/ApiGarudakuGameTopupsIdDelete200Response.ts +81 -0
- package/models/ApiGarudakuGameTopupsPost200Response.ts +100 -0
- package/models/ApiGarudakuTournamentsGet200Response.ts +100 -0
- package/models/ApiGarudakuTournamentsGet200ResponseResponseObject.ts +110 -0
- package/models/ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner.ts +131 -0
- package/models/ApiGarudakuTournamentsGetFilterParameter.ts +127 -0
- package/models/ApiGarudakuTournamentsIdDelete200Response.ts +81 -0
- package/models/ApiGarudakuTournamentsPost200Response.ts +100 -0
- package/models/ApiGarudakuTournamentsRefreshCachePost200Response.ts +73 -0
- package/models/CreateGameTopupRequest.ts +100 -0
- package/models/CreateTournamentRequest.ts +104 -0
- package/models/GameTopup.ts +127 -0
- package/models/GameTopupList.ts +110 -0
- package/models/QueryGameTopupList.ts +74 -0
- package/models/QueryGameTopupListQuery.ts +98 -0
- package/models/QueryTournamentList.ts +74 -0
- package/models/QueryTournamentListQuery.ts +98 -0
- package/models/Tournament.ts +131 -0
- package/models/TournamentList.ts +110 -0
- package/models/UpdateGameTopupRequest.ts +97 -0
- package/models/UpdateTournamentRequest.ts +100 -0
- package/models/index.ts +26 -0
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApiGarudakuTournamentsGet200ResponseResponseObject } from './ApiGarudakuTournamentsGet200ResponseResponseObject';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ApiGarudakuTournamentsGet200Response
|
|
17
|
+
*/
|
|
18
|
+
export interface ApiGarudakuTournamentsGet200Response {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @memberof ApiGarudakuTournamentsGet200Response
|
|
23
|
+
*/
|
|
24
|
+
success: boolean;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ApiGarudakuTournamentsGet200Response
|
|
29
|
+
*/
|
|
30
|
+
message: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ApiGarudakuTournamentsGet200ResponseResponseObject}
|
|
34
|
+
* @memberof ApiGarudakuTournamentsGet200Response
|
|
35
|
+
*/
|
|
36
|
+
responseObject?: ApiGarudakuTournamentsGet200ResponseResponseObject;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ApiGarudakuTournamentsGet200Response
|
|
41
|
+
*/
|
|
42
|
+
statusCode: number;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the ApiGarudakuTournamentsGet200Response interface.
|
|
46
|
+
*/
|
|
47
|
+
export declare function instanceOfApiGarudakuTournamentsGet200Response(value: object): value is ApiGarudakuTournamentsGet200Response;
|
|
48
|
+
export declare function ApiGarudakuTournamentsGet200ResponseFromJSON(json: any): ApiGarudakuTournamentsGet200Response;
|
|
49
|
+
export declare function ApiGarudakuTournamentsGet200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiGarudakuTournamentsGet200Response;
|
|
50
|
+
export declare function ApiGarudakuTournamentsGet200ResponseToJSON(json: any): ApiGarudakuTournamentsGet200Response;
|
|
51
|
+
export declare function ApiGarudakuTournamentsGet200ResponseToJSONTyped(value?: ApiGarudakuTournamentsGet200Response | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { ApiGarudakuTournamentsGet200ResponseResponseObjectFromJSON, ApiGarudakuTournamentsGet200ResponseResponseObjectToJSON, } from './ApiGarudakuTournamentsGet200ResponseResponseObject';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the ApiGarudakuTournamentsGet200Response interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfApiGarudakuTournamentsGet200Response(value) {
|
|
19
|
+
if (!('success' in value) || value['success'] === undefined)
|
|
20
|
+
return false;
|
|
21
|
+
if (!('message' in value) || value['message'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('statusCode' in value) || value['statusCode'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
return true;
|
|
26
|
+
}
|
|
27
|
+
export function ApiGarudakuTournamentsGet200ResponseFromJSON(json) {
|
|
28
|
+
return ApiGarudakuTournamentsGet200ResponseFromJSONTyped(json, false);
|
|
29
|
+
}
|
|
30
|
+
export function ApiGarudakuTournamentsGet200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
31
|
+
if (json == null) {
|
|
32
|
+
return json;
|
|
33
|
+
}
|
|
34
|
+
return {
|
|
35
|
+
'success': json['success'],
|
|
36
|
+
'message': json['message'],
|
|
37
|
+
'responseObject': json['responseObject'] == null ? undefined : ApiGarudakuTournamentsGet200ResponseResponseObjectFromJSON(json['responseObject']),
|
|
38
|
+
'statusCode': json['statusCode'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
export function ApiGarudakuTournamentsGet200ResponseToJSON(json) {
|
|
42
|
+
return ApiGarudakuTournamentsGet200ResponseToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
export function ApiGarudakuTournamentsGet200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
45
|
+
if (value == null) {
|
|
46
|
+
return value;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'success': value['success'],
|
|
50
|
+
'message': value['message'],
|
|
51
|
+
'responseObject': ApiGarudakuTournamentsGet200ResponseResponseObjectToJSON(value['responseObject']),
|
|
52
|
+
'statusCode': value['statusCode'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner } from './ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ApiGarudakuTournamentsGet200ResponseResponseObject
|
|
17
|
+
*/
|
|
18
|
+
export interface ApiGarudakuTournamentsGet200ResponseResponseObject {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner>}
|
|
22
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObject
|
|
23
|
+
*/
|
|
24
|
+
items: Array<ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner>;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {number}
|
|
28
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObject
|
|
29
|
+
*/
|
|
30
|
+
currentPage: number;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {number}
|
|
34
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObject
|
|
35
|
+
*/
|
|
36
|
+
pageSize: number;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObject
|
|
41
|
+
*/
|
|
42
|
+
totalItems: number;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObject
|
|
47
|
+
*/
|
|
48
|
+
totalPages: number;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Check if a given object implements the ApiGarudakuTournamentsGet200ResponseResponseObject interface.
|
|
52
|
+
*/
|
|
53
|
+
export declare function instanceOfApiGarudakuTournamentsGet200ResponseResponseObject(value: object): value is ApiGarudakuTournamentsGet200ResponseResponseObject;
|
|
54
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectFromJSON(json: any): ApiGarudakuTournamentsGet200ResponseResponseObject;
|
|
55
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiGarudakuTournamentsGet200ResponseResponseObject;
|
|
56
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectToJSON(json: any): ApiGarudakuTournamentsGet200ResponseResponseObject;
|
|
57
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectToJSONTyped(value?: ApiGarudakuTournamentsGet200ResponseResponseObject | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFromJSON, ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJSON, } from './ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner';
|
|
15
|
+
/**
|
|
16
|
+
* Check if a given object implements the ApiGarudakuTournamentsGet200ResponseResponseObject interface.
|
|
17
|
+
*/
|
|
18
|
+
export function instanceOfApiGarudakuTournamentsGet200ResponseResponseObject(value) {
|
|
19
|
+
if (!('items' in value) || value['items'] === undefined)
|
|
20
|
+
return false;
|
|
21
|
+
if (!('currentPage' in value) || value['currentPage'] === undefined)
|
|
22
|
+
return false;
|
|
23
|
+
if (!('pageSize' in value) || value['pageSize'] === undefined)
|
|
24
|
+
return false;
|
|
25
|
+
if (!('totalItems' in value) || value['totalItems'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('totalPages' in value) || value['totalPages'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectFromJSON(json) {
|
|
32
|
+
return ApiGarudakuTournamentsGet200ResponseResponseObjectFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'items': (json['items'].map(ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFromJSON)),
|
|
40
|
+
'currentPage': json['currentPage'],
|
|
41
|
+
'pageSize': json['pageSize'],
|
|
42
|
+
'totalItems': json['totalItems'],
|
|
43
|
+
'totalPages': json['totalPages'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
46
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectToJSON(json) {
|
|
47
|
+
return ApiGarudakuTournamentsGet200ResponseResponseObjectToJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectToJSONTyped(value, ignoreDiscriminator = false) {
|
|
50
|
+
if (value == null) {
|
|
51
|
+
return value;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
'items': (value['items'].map(ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJSON)),
|
|
55
|
+
'currentPage': value['currentPage'],
|
|
56
|
+
'pageSize': value['pageSize'],
|
|
57
|
+
'totalItems': value['totalItems'],
|
|
58
|
+
'totalPages': value['totalPages'],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
16
|
+
*/
|
|
17
|
+
export interface ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
22
|
+
*/
|
|
23
|
+
id: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
28
|
+
*/
|
|
29
|
+
tournamentName: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
34
|
+
*/
|
|
35
|
+
category: ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerCategoryEnum;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {number}
|
|
39
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
40
|
+
*/
|
|
41
|
+
prizePool: number;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {Date}
|
|
45
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
46
|
+
*/
|
|
47
|
+
tournamentDatetime: Date;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {Date}
|
|
51
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
52
|
+
*/
|
|
53
|
+
createdAt: Date;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Date}
|
|
57
|
+
* @memberof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner
|
|
58
|
+
*/
|
|
59
|
+
updatedAt: Date;
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* @export
|
|
63
|
+
*/
|
|
64
|
+
export declare const ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerCategoryEnum: {
|
|
65
|
+
readonly Public: "public";
|
|
66
|
+
readonly Private: "private";
|
|
67
|
+
};
|
|
68
|
+
export type ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerCategoryEnum = typeof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerCategoryEnum[keyof typeof ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerCategoryEnum];
|
|
69
|
+
/**
|
|
70
|
+
* Check if a given object implements the ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner interface.
|
|
71
|
+
*/
|
|
72
|
+
export declare function instanceOfApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner(value: object): value is ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner;
|
|
73
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFromJSON(json: any): ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner;
|
|
74
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner;
|
|
75
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJSON(json: any): ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner;
|
|
76
|
+
export declare function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJSONTyped(value?: ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* @export
|
|
16
|
+
*/
|
|
17
|
+
export const ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerCategoryEnum = {
|
|
18
|
+
Public: 'public',
|
|
19
|
+
Private: 'private'
|
|
20
|
+
};
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner interface.
|
|
23
|
+
*/
|
|
24
|
+
export function instanceOfApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner(value) {
|
|
25
|
+
if (!('id' in value) || value['id'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('tournamentName' in value) || value['tournamentName'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('category' in value) || value['category'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('prizePool' in value) || value['prizePool'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('tournamentDatetime' in value) || value['tournamentDatetime'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
return true;
|
|
40
|
+
}
|
|
41
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFromJSON(json) {
|
|
42
|
+
return ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFromJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
45
|
+
if (json == null) {
|
|
46
|
+
return json;
|
|
47
|
+
}
|
|
48
|
+
return {
|
|
49
|
+
'id': json['id'],
|
|
50
|
+
'tournamentName': json['tournamentName'],
|
|
51
|
+
'category': json['category'],
|
|
52
|
+
'prizePool': json['prizePool'],
|
|
53
|
+
'tournamentDatetime': (new Date(json['tournamentDatetime'])),
|
|
54
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
55
|
+
'updatedAt': (new Date(json['updatedAt'])),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
58
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJSON(json) {
|
|
59
|
+
return ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
export function ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInnerToJSONTyped(value, ignoreDiscriminator = false) {
|
|
62
|
+
if (value == null) {
|
|
63
|
+
return value;
|
|
64
|
+
}
|
|
65
|
+
return {
|
|
66
|
+
'id': value['id'],
|
|
67
|
+
'tournamentName': value['tournamentName'],
|
|
68
|
+
'category': value['category'],
|
|
69
|
+
'prizePool': value['prizePool'],
|
|
70
|
+
'tournamentDatetime': ((value['tournamentDatetime']).toISOString()),
|
|
71
|
+
'createdAt': ((value['createdAt']).toISOString()),
|
|
72
|
+
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
73
|
+
};
|
|
74
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApiPadelMatchesGetFilterParameterName } from './ApiPadelMatchesGetFilterParameterName';
|
|
13
|
+
import type { ApiPadelMatchesGetFilterParameterId } from './ApiPadelMatchesGetFilterParameterId';
|
|
14
|
+
import type { ApiPadelMatchesGetFilterParameterPlayedAt } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
15
|
+
/**
|
|
16
|
+
*
|
|
17
|
+
* @export
|
|
18
|
+
* @interface ApiGarudakuTournamentsGetFilterParameter
|
|
19
|
+
*/
|
|
20
|
+
export interface ApiGarudakuTournamentsGetFilterParameter {
|
|
21
|
+
/**
|
|
22
|
+
*
|
|
23
|
+
* @type {ApiPadelMatchesGetFilterParameterName}
|
|
24
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
25
|
+
*/
|
|
26
|
+
tournamentName?: ApiPadelMatchesGetFilterParameterName;
|
|
27
|
+
/**
|
|
28
|
+
*
|
|
29
|
+
* @type {ApiPadelMatchesGetFilterParameterName}
|
|
30
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
31
|
+
*/
|
|
32
|
+
category?: ApiPadelMatchesGetFilterParameterName;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {ApiPadelMatchesGetFilterParameterId}
|
|
36
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
37
|
+
*/
|
|
38
|
+
prizePool?: ApiPadelMatchesGetFilterParameterId;
|
|
39
|
+
/**
|
|
40
|
+
*
|
|
41
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
42
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
43
|
+
*/
|
|
44
|
+
tournamentDatetime?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
48
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
49
|
+
*/
|
|
50
|
+
createdAt?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
51
|
+
/**
|
|
52
|
+
*
|
|
53
|
+
* @type {ApiPadelMatchesGetFilterParameterPlayedAt}
|
|
54
|
+
* @memberof ApiGarudakuTournamentsGetFilterParameter
|
|
55
|
+
*/
|
|
56
|
+
updatedAt?: ApiPadelMatchesGetFilterParameterPlayedAt;
|
|
57
|
+
}
|
|
58
|
+
/**
|
|
59
|
+
* Check if a given object implements the ApiGarudakuTournamentsGetFilterParameter interface.
|
|
60
|
+
*/
|
|
61
|
+
export declare function instanceOfApiGarudakuTournamentsGetFilterParameter(value: object): value is ApiGarudakuTournamentsGetFilterParameter;
|
|
62
|
+
export declare function ApiGarudakuTournamentsGetFilterParameterFromJSON(json: any): ApiGarudakuTournamentsGetFilterParameter;
|
|
63
|
+
export declare function ApiGarudakuTournamentsGetFilterParameterFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiGarudakuTournamentsGetFilterParameter;
|
|
64
|
+
export declare function ApiGarudakuTournamentsGetFilterParameterToJSON(json: any): ApiGarudakuTournamentsGetFilterParameter;
|
|
65
|
+
export declare function ApiGarudakuTournamentsGetFilterParameterToJSONTyped(value?: ApiGarudakuTournamentsGetFilterParameter | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
import { ApiPadelMatchesGetFilterParameterNameFromJSON, ApiPadelMatchesGetFilterParameterNameToJSON, } from './ApiPadelMatchesGetFilterParameterName';
|
|
15
|
+
import { ApiPadelMatchesGetFilterParameterIdFromJSON, ApiPadelMatchesGetFilterParameterIdToJSON, } from './ApiPadelMatchesGetFilterParameterId';
|
|
16
|
+
import { ApiPadelMatchesGetFilterParameterPlayedAtFromJSON, ApiPadelMatchesGetFilterParameterPlayedAtToJSON, } from './ApiPadelMatchesGetFilterParameterPlayedAt';
|
|
17
|
+
/**
|
|
18
|
+
* Check if a given object implements the ApiGarudakuTournamentsGetFilterParameter interface.
|
|
19
|
+
*/
|
|
20
|
+
export function instanceOfApiGarudakuTournamentsGetFilterParameter(value) {
|
|
21
|
+
return true;
|
|
22
|
+
}
|
|
23
|
+
export function ApiGarudakuTournamentsGetFilterParameterFromJSON(json) {
|
|
24
|
+
return ApiGarudakuTournamentsGetFilterParameterFromJSONTyped(json, false);
|
|
25
|
+
}
|
|
26
|
+
export function ApiGarudakuTournamentsGetFilterParameterFromJSONTyped(json, ignoreDiscriminator) {
|
|
27
|
+
if (json == null) {
|
|
28
|
+
return json;
|
|
29
|
+
}
|
|
30
|
+
return {
|
|
31
|
+
'tournamentName': json['tournamentName'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['tournamentName']),
|
|
32
|
+
'category': json['category'] == null ? undefined : ApiPadelMatchesGetFilterParameterNameFromJSON(json['category']),
|
|
33
|
+
'prizePool': json['prizePool'] == null ? undefined : ApiPadelMatchesGetFilterParameterIdFromJSON(json['prizePool']),
|
|
34
|
+
'tournamentDatetime': json['tournamentDatetime'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['tournamentDatetime']),
|
|
35
|
+
'createdAt': json['createdAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['createdAt']),
|
|
36
|
+
'updatedAt': json['updatedAt'] == null ? undefined : ApiPadelMatchesGetFilterParameterPlayedAtFromJSON(json['updatedAt']),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
export function ApiGarudakuTournamentsGetFilterParameterToJSON(json) {
|
|
40
|
+
return ApiGarudakuTournamentsGetFilterParameterToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
export function ApiGarudakuTournamentsGetFilterParameterToJSONTyped(value, ignoreDiscriminator = false) {
|
|
43
|
+
if (value == null) {
|
|
44
|
+
return value;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'tournamentName': ApiPadelMatchesGetFilterParameterNameToJSON(value['tournamentName']),
|
|
48
|
+
'category': ApiPadelMatchesGetFilterParameterNameToJSON(value['category']),
|
|
49
|
+
'prizePool': ApiPadelMatchesGetFilterParameterIdToJSON(value['prizePool']),
|
|
50
|
+
'tournamentDatetime': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['tournamentDatetime']),
|
|
51
|
+
'createdAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['createdAt']),
|
|
52
|
+
'updatedAt': ApiPadelMatchesGetFilterParameterPlayedAtToJSON(value['updatedAt']),
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface ApiGarudakuTournamentsIdDelete200Response
|
|
16
|
+
*/
|
|
17
|
+
export interface ApiGarudakuTournamentsIdDelete200Response {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {boolean}
|
|
21
|
+
* @memberof ApiGarudakuTournamentsIdDelete200Response
|
|
22
|
+
*/
|
|
23
|
+
success?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof ApiGarudakuTournamentsIdDelete200Response
|
|
28
|
+
*/
|
|
29
|
+
message?: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {object}
|
|
33
|
+
* @memberof ApiGarudakuTournamentsIdDelete200Response
|
|
34
|
+
*/
|
|
35
|
+
data?: object;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the ApiGarudakuTournamentsIdDelete200Response interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfApiGarudakuTournamentsIdDelete200Response(value: object): value is ApiGarudakuTournamentsIdDelete200Response;
|
|
41
|
+
export declare function ApiGarudakuTournamentsIdDelete200ResponseFromJSON(json: any): ApiGarudakuTournamentsIdDelete200Response;
|
|
42
|
+
export declare function ApiGarudakuTournamentsIdDelete200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiGarudakuTournamentsIdDelete200Response;
|
|
43
|
+
export declare function ApiGarudakuTournamentsIdDelete200ResponseToJSON(json: any): ApiGarudakuTournamentsIdDelete200Response;
|
|
44
|
+
export declare function ApiGarudakuTournamentsIdDelete200ResponseToJSONTyped(value?: ApiGarudakuTournamentsIdDelete200Response | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* DRX API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
/**
|
|
15
|
+
* Check if a given object implements the ApiGarudakuTournamentsIdDelete200Response interface.
|
|
16
|
+
*/
|
|
17
|
+
export function instanceOfApiGarudakuTournamentsIdDelete200Response(value) {
|
|
18
|
+
return true;
|
|
19
|
+
}
|
|
20
|
+
export function ApiGarudakuTournamentsIdDelete200ResponseFromJSON(json) {
|
|
21
|
+
return ApiGarudakuTournamentsIdDelete200ResponseFromJSONTyped(json, false);
|
|
22
|
+
}
|
|
23
|
+
export function ApiGarudakuTournamentsIdDelete200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
24
|
+
if (json == null) {
|
|
25
|
+
return json;
|
|
26
|
+
}
|
|
27
|
+
return {
|
|
28
|
+
'success': json['success'] == null ? undefined : json['success'],
|
|
29
|
+
'message': json['message'] == null ? undefined : json['message'],
|
|
30
|
+
'data': json['data'] == null ? undefined : json['data'],
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
export function ApiGarudakuTournamentsIdDelete200ResponseToJSON(json) {
|
|
34
|
+
return ApiGarudakuTournamentsIdDelete200ResponseToJSONTyped(json, false);
|
|
35
|
+
}
|
|
36
|
+
export function ApiGarudakuTournamentsIdDelete200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
37
|
+
if (value == null) {
|
|
38
|
+
return value;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'success': value['success'],
|
|
42
|
+
'message': value['message'],
|
|
43
|
+
'data': value['data'],
|
|
44
|
+
};
|
|
45
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* DRX API
|
|
3
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 1.0.0
|
|
6
|
+
*
|
|
7
|
+
*
|
|
8
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
9
|
+
* https://openapi-generator.tech
|
|
10
|
+
* Do not edit the class manually.
|
|
11
|
+
*/
|
|
12
|
+
import type { ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner } from './ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface ApiGarudakuTournamentsPost200Response
|
|
17
|
+
*/
|
|
18
|
+
export interface ApiGarudakuTournamentsPost200Response {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @memberof ApiGarudakuTournamentsPost200Response
|
|
23
|
+
*/
|
|
24
|
+
success: boolean;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {string}
|
|
28
|
+
* @memberof ApiGarudakuTournamentsPost200Response
|
|
29
|
+
*/
|
|
30
|
+
message: string;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner}
|
|
34
|
+
* @memberof ApiGarudakuTournamentsPost200Response
|
|
35
|
+
*/
|
|
36
|
+
responseObject?: ApiGarudakuTournamentsGet200ResponseResponseObjectItemsInner;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {number}
|
|
40
|
+
* @memberof ApiGarudakuTournamentsPost200Response
|
|
41
|
+
*/
|
|
42
|
+
statusCode: number;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Check if a given object implements the ApiGarudakuTournamentsPost200Response interface.
|
|
46
|
+
*/
|
|
47
|
+
export declare function instanceOfApiGarudakuTournamentsPost200Response(value: object): value is ApiGarudakuTournamentsPost200Response;
|
|
48
|
+
export declare function ApiGarudakuTournamentsPost200ResponseFromJSON(json: any): ApiGarudakuTournamentsPost200Response;
|
|
49
|
+
export declare function ApiGarudakuTournamentsPost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiGarudakuTournamentsPost200Response;
|
|
50
|
+
export declare function ApiGarudakuTournamentsPost200ResponseToJSON(json: any): ApiGarudakuTournamentsPost200Response;
|
|
51
|
+
export declare function ApiGarudakuTournamentsPost200ResponseToJSONTyped(value?: ApiGarudakuTournamentsPost200Response | null, ignoreDiscriminator?: boolean): any;
|