@digital8/cctv-web-app-ts-sdk 0.0.1
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 +77 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +46 -0
- package/dist/apis/AccountApi.d.ts +45 -0
- package/dist/apis/AccountApi.js +210 -0
- package/dist/apis/AuthApi.d.ts +90 -0
- package/dist/apis/AuthApi.js +458 -0
- package/dist/apis/CompaniesApi.d.ts +102 -0
- package/dist/apis/CompaniesApi.js +442 -0
- package/dist/apis/DashboardApi.d.ts +26 -0
- package/dist/apis/DashboardApi.js +122 -0
- package/dist/apis/FormAApi.d.ts +90 -0
- package/dist/apis/FormAApi.js +395 -0
- package/dist/apis/FormBApi.d.ts +79 -0
- package/dist/apis/FormBApi.js +350 -0
- package/dist/apis/FormCApi.d.ts +90 -0
- package/dist/apis/FormCApi.js +395 -0
- package/dist/apis/ManagerApi.d.ts +42 -0
- package/dist/apis/ManagerApi.js +180 -0
- package/dist/apis/ManagersApi.d.ts +71 -0
- package/dist/apis/ManagersApi.js +307 -0
- package/dist/apis/NotificationsApi.d.ts +40 -0
- package/dist/apis/NotificationsApi.js +171 -0
- package/dist/apis/QuestionsApi.d.ts +71 -0
- package/dist/apis/QuestionsApi.js +307 -0
- package/dist/apis/TechniciansApi.d.ts +73 -0
- package/dist/apis/TechniciansApi.js +308 -0
- package/dist/apis/UploadApi.d.ts +29 -0
- package/dist/apis/UploadApi.js +125 -0
- package/dist/apis/VenueApi.d.ts +41 -0
- package/dist/apis/VenueApi.js +176 -0
- package/dist/apis/VenuesApi.d.ts +144 -0
- package/dist/apis/VenuesApi.js +623 -0
- package/dist/apis/index.d.ts +15 -0
- package/dist/apis/index.js +33 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +21 -0
- package/dist/models/AssetFileForUploadResource.d.ts +52 -0
- package/dist/models/AssetFileForUploadResource.js +63 -0
- package/dist/models/AssetFileForUploadResourceArrayResponse.d.ts +33 -0
- package/dist/models/AssetFileForUploadResourceArrayResponse.js +50 -0
- package/dist/models/AssetLiteResource.d.ts +38 -0
- package/dist/models/AssetLiteResource.js +53 -0
- package/dist/models/AssetLiteResourceArrayResponse.d.ts +33 -0
- package/dist/models/AssetLiteResourceArrayResponse.js +50 -0
- package/dist/models/AssetResource.d.ts +62 -0
- package/dist/models/AssetResource.js +67 -0
- package/dist/models/AssetResourceArrayResponse.d.ts +33 -0
- package/dist/models/AssetResourceArrayResponse.js +50 -0
- package/dist/models/CompanyResource.d.ts +56 -0
- package/dist/models/CompanyResource.js +67 -0
- package/dist/models/CompanyResourceArrayResponse.d.ts +33 -0
- package/dist/models/CompanyResourceArrayResponse.js +50 -0
- package/dist/models/CreateFormARequest.d.ts +81 -0
- package/dist/models/CreateFormARequest.js +73 -0
- package/dist/models/CreateFormARequestAnswersInner.d.ts +38 -0
- package/dist/models/CreateFormARequestAnswersInner.js +55 -0
- package/dist/models/CreateNotificationSilenceRequest.d.ts +46 -0
- package/dist/models/CreateNotificationSilenceRequest.js +63 -0
- package/dist/models/CreateOrUpdateCompanyRequest.d.ts +50 -0
- package/dist/models/CreateOrUpdateCompanyRequest.js +61 -0
- package/dist/models/CreateOrUpdateFormCRequest.d.ts +98 -0
- package/dist/models/CreateOrUpdateFormCRequest.js +80 -0
- package/dist/models/CreateOrUpdateManagerRequest.d.ts +92 -0
- package/dist/models/CreateOrUpdateManagerRequest.js +81 -0
- package/dist/models/CreateOrUpdateQuestionRequest.d.ts +38 -0
- package/dist/models/CreateOrUpdateQuestionRequest.js +53 -0
- package/dist/models/CreateOrUpdateTechnicianRequest.d.ts +56 -0
- package/dist/models/CreateOrUpdateTechnicianRequest.js +65 -0
- package/dist/models/CreateOrUpdateVenueRequest.d.ts +93 -0
- package/dist/models/CreateOrUpdateVenueRequest.js +86 -0
- package/dist/models/CreateOrUpdateVenueRequestHoursInner.d.ts +38 -0
- package/dist/models/CreateOrUpdateVenueRequestHoursInner.js +55 -0
- package/dist/models/FindNearbyVenuesRequest.d.ts +38 -0
- package/dist/models/FindNearbyVenuesRequest.js +55 -0
- package/dist/models/FormAResource.d.ts +122 -0
- package/dist/models/FormAResource.js +101 -0
- package/dist/models/FormAResourceArrayResponse.d.ts +33 -0
- package/dist/models/FormAResourceArrayResponse.js +50 -0
- package/dist/models/FormBResource.d.ts +86 -0
- package/dist/models/FormBResource.js +75 -0
- package/dist/models/FormBResourceArrayResponse.d.ts +33 -0
- package/dist/models/FormBResourceArrayResponse.js +50 -0
- package/dist/models/FormCResource.d.ts +112 -0
- package/dist/models/FormCResource.js +101 -0
- package/dist/models/FormCResourceArrayResponse.d.ts +33 -0
- package/dist/models/FormCResourceArrayResponse.js +50 -0
- package/dist/models/GenericResponse.d.ts +32 -0
- package/dist/models/GenericResponse.js +49 -0
- package/dist/models/GetUploadUrlRequest.d.ts +56 -0
- package/dist/models/GetUploadUrlRequest.js +71 -0
- package/dist/models/ManagerResource.d.ts +128 -0
- package/dist/models/ManagerResource.js +107 -0
- package/dist/models/ManagerResourceArrayResponse.d.ts +33 -0
- package/dist/models/ManagerResourceArrayResponse.js +50 -0
- package/dist/models/PaginatedCompanyResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedCompanyResourceResponse.js +57 -0
- package/dist/models/PaginatedFormAResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedFormAResourceResponse.js +57 -0
- package/dist/models/PaginatedFormBResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedFormBResourceResponse.js +57 -0
- package/dist/models/PaginatedFormCResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedFormCResourceResponse.js +57 -0
- package/dist/models/PaginatedManagerResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedManagerResourceResponse.js +57 -0
- package/dist/models/PaginatedQuestionResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedQuestionResourceResponse.js +57 -0
- package/dist/models/PaginatedTechnicianResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedTechnicianResourceResponse.js +57 -0
- package/dist/models/PaginatedVenueResourceResponse.d.ts +40 -0
- package/dist/models/PaginatedVenueResourceResponse.js +57 -0
- package/dist/models/PagingMetadata.d.ts +68 -0
- package/dist/models/PagingMetadata.js +75 -0
- package/dist/models/QuestionResource.d.ts +50 -0
- package/dist/models/QuestionResource.js +61 -0
- package/dist/models/QuestionResourceArrayResponse.d.ts +33 -0
- package/dist/models/QuestionResourceArrayResponse.js +50 -0
- package/dist/models/SearchCompaniesRequest.d.ts +90 -0
- package/dist/models/SearchCompaniesRequest.js +78 -0
- package/dist/models/SearchTechniciansRequest.d.ts +92 -0
- package/dist/models/SearchTechniciansRequest.js +80 -0
- package/dist/models/TechnicianResource.d.ts +80 -0
- package/dist/models/TechnicianResource.js +81 -0
- package/dist/models/TechnicianResourceArrayResponse.d.ts +33 -0
- package/dist/models/TechnicianResourceArrayResponse.js +50 -0
- package/dist/models/UpdateFormARequest.d.ts +57 -0
- package/dist/models/UpdateFormARequest.js +60 -0
- package/dist/models/UpdateFormARequestAnswersInner.d.ts +38 -0
- package/dist/models/UpdateFormARequestAnswersInner.js +55 -0
- package/dist/models/UpdateFormBRequest.d.ts +50 -0
- package/dist/models/UpdateFormBRequest.js +56 -0
- package/dist/models/UpdateNonTradingDaysRequest.d.ts +32 -0
- package/dist/models/UpdateNonTradingDaysRequest.js +49 -0
- package/dist/models/UserResource.d.ts +68 -0
- package/dist/models/UserResource.js +71 -0
- package/dist/models/UserResourceArrayResponse.d.ts +33 -0
- package/dist/models/UserResourceArrayResponse.js +50 -0
- package/dist/models/VenueResource.d.ts +153 -0
- package/dist/models/VenueResource.js +132 -0
- package/dist/models/VenueResourceArrayResponse.d.ts +33 -0
- package/dist/models/VenueResourceArrayResponse.js +50 -0
- package/dist/models/index.d.ts +52 -0
- package/dist/models/index.js +70 -0
- package/dist/runtime.d.ts +184 -0
- package/dist/runtime.js +564 -0
- package/package.json +19 -0
- package/src/apis/AccountApi.ts +132 -0
- package/src/apis/AuthApi.ts +291 -0
- package/src/apis/CompaniesApi.ts +341 -0
- package/src/apis/DashboardApi.ts +59 -0
- package/src/apis/FormAApi.ts +301 -0
- package/src/apis/FormBApi.ts +262 -0
- package/src/apis/FormCApi.ts +298 -0
- package/src/apis/ManagerApi.ts +133 -0
- package/src/apis/ManagersApi.ts +228 -0
- package/src/apis/NotificationsApi.ts +110 -0
- package/src/apis/QuestionsApi.ts +225 -0
- package/src/apis/TechniciansApi.ts +234 -0
- package/src/apis/UploadApi.ts +69 -0
- package/src/apis/VenueApi.ts +121 -0
- package/src/apis/VenuesApi.ts +492 -0
- package/src/apis/index.ts +17 -0
- package/src/index.ts +5 -0
- package/src/models/AssetFileForUploadResource.ts +93 -0
- package/src/models/AssetFileForUploadResourceArrayResponse.ts +73 -0
- package/src/models/AssetLiteResource.ts +74 -0
- package/src/models/AssetLiteResourceArrayResponse.ts +73 -0
- package/src/models/AssetResource.ts +109 -0
- package/src/models/AssetResourceArrayResponse.ts +73 -0
- package/src/models/CompanyResource.ts +102 -0
- package/src/models/CompanyResourceArrayResponse.ts +73 -0
- package/src/models/CreateFormARequest.ts +140 -0
- package/src/models/CreateFormARequestAnswersInner.ts +75 -0
- package/src/models/CreateNotificationSilenceRequest.ts +86 -0
- package/src/models/CreateOrUpdateCompanyRequest.ts +92 -0
- package/src/models/CreateOrUpdateFormCRequest.ts +157 -0
- package/src/models/CreateOrUpdateManagerRequest.ts +151 -0
- package/src/models/CreateOrUpdateQuestionRequest.ts +74 -0
- package/src/models/CreateOrUpdateTechnicianRequest.ts +101 -0
- package/src/models/CreateOrUpdateVenueRequest.ts +161 -0
- package/src/models/CreateOrUpdateVenueRequestHoursInner.ts +75 -0
- package/src/models/FindNearbyVenuesRequest.ts +75 -0
- package/src/models/FormAResource.ts +196 -0
- package/src/models/FormAResourceArrayResponse.ts +73 -0
- package/src/models/FormBResource.ts +141 -0
- package/src/models/FormBResourceArrayResponse.ts +73 -0
- package/src/models/FormCResource.ts +196 -0
- package/src/models/FormCResourceArrayResponse.ts +73 -0
- package/src/models/GenericResponse.ts +65 -0
- package/src/models/GetUploadUrlRequest.ts +99 -0
- package/src/models/ManagerResource.ts +206 -0
- package/src/models/ManagerResourceArrayResponse.ts +73 -0
- package/src/models/PaginatedCompanyResourceResponse.ts +90 -0
- package/src/models/PaginatedFormAResourceResponse.ts +90 -0
- package/src/models/PaginatedFormBResourceResponse.ts +90 -0
- package/src/models/PaginatedFormCResourceResponse.ts +90 -0
- package/src/models/PaginatedManagerResourceResponse.ts +90 -0
- package/src/models/PaginatedQuestionResourceResponse.ts +90 -0
- package/src/models/PaginatedTechnicianResourceResponse.ts +90 -0
- package/src/models/PaginatedVenueResourceResponse.ts +90 -0
- package/src/models/PagingMetadata.ts +120 -0
- package/src/models/QuestionResource.ts +92 -0
- package/src/models/QuestionResourceArrayResponse.ts +73 -0
- package/src/models/SearchCompaniesRequest.ts +141 -0
- package/src/models/SearchTechniciansRequest.ts +143 -0
- package/src/models/TechnicianResource.ts +137 -0
- package/src/models/TechnicianResourceArrayResponse.ts +73 -0
- package/src/models/UpdateFormARequest.ts +106 -0
- package/src/models/UpdateFormARequestAnswersInner.ts +75 -0
- package/src/models/UpdateFormBRequest.ts +89 -0
- package/src/models/UpdateNonTradingDaysRequest.ts +65 -0
- package/src/models/UserResource.ts +118 -0
- package/src/models/UserResourceArrayResponse.ts +73 -0
- package/src/models/VenueResource.ts +254 -0
- package/src/models/VenueResourceArrayResponse.ts +73 -0
- package/src/models/index.ts +54 -0
- package/src/runtime.ts +432 -0
- package/tsconfig.json +20 -0
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CCTV Registers API
|
|
3
|
+
* API documentation for the CCTV Registers application
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 CreateOrUpdateFormCRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateOrUpdateFormCRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
22
|
+
*/
|
|
23
|
+
venueId: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
28
|
+
*/
|
|
29
|
+
note?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
34
|
+
*/
|
|
35
|
+
formImage?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
40
|
+
*/
|
|
41
|
+
technicianName: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
46
|
+
*/
|
|
47
|
+
technicianLicenceNumber: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
52
|
+
*/
|
|
53
|
+
technicianCompanyName: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Date}
|
|
57
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
58
|
+
*/
|
|
59
|
+
date?: Date | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {boolean}
|
|
63
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
64
|
+
*/
|
|
65
|
+
systemWorking?: boolean;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
70
|
+
*/
|
|
71
|
+
systemRecording?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {boolean}
|
|
75
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
76
|
+
*/
|
|
77
|
+
cameras?: boolean;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {boolean}
|
|
81
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
82
|
+
*/
|
|
83
|
+
recording?: boolean;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @memberof CreateOrUpdateFormCRequest
|
|
88
|
+
*/
|
|
89
|
+
matchTime?: boolean;
|
|
90
|
+
}
|
|
91
|
+
/**
|
|
92
|
+
* Check if a given object implements the CreateOrUpdateFormCRequest interface.
|
|
93
|
+
*/
|
|
94
|
+
export declare function instanceOfCreateOrUpdateFormCRequest(value: object): value is CreateOrUpdateFormCRequest;
|
|
95
|
+
export declare function CreateOrUpdateFormCRequestFromJSON(json: any): CreateOrUpdateFormCRequest;
|
|
96
|
+
export declare function CreateOrUpdateFormCRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrUpdateFormCRequest;
|
|
97
|
+
export declare function CreateOrUpdateFormCRequestToJSON(json: any): CreateOrUpdateFormCRequest;
|
|
98
|
+
export declare function CreateOrUpdateFormCRequestToJSONTyped(value?: CreateOrUpdateFormCRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CCTV Registers API
|
|
6
|
+
* API documentation for the CCTV Registers application
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCreateOrUpdateFormCRequest = instanceOfCreateOrUpdateFormCRequest;
|
|
17
|
+
exports.CreateOrUpdateFormCRequestFromJSON = CreateOrUpdateFormCRequestFromJSON;
|
|
18
|
+
exports.CreateOrUpdateFormCRequestFromJSONTyped = CreateOrUpdateFormCRequestFromJSONTyped;
|
|
19
|
+
exports.CreateOrUpdateFormCRequestToJSON = CreateOrUpdateFormCRequestToJSON;
|
|
20
|
+
exports.CreateOrUpdateFormCRequestToJSONTyped = CreateOrUpdateFormCRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the CreateOrUpdateFormCRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfCreateOrUpdateFormCRequest(value) {
|
|
25
|
+
if (!('venueId' in value) || value['venueId'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('technicianName' in value) || value['technicianName'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('technicianLicenceNumber' in value) || value['technicianLicenceNumber'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('technicianCompanyName' in value) || value['technicianCompanyName'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
return true;
|
|
34
|
+
}
|
|
35
|
+
function CreateOrUpdateFormCRequestFromJSON(json) {
|
|
36
|
+
return CreateOrUpdateFormCRequestFromJSONTyped(json, false);
|
|
37
|
+
}
|
|
38
|
+
function CreateOrUpdateFormCRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
|
+
if (json == null) {
|
|
40
|
+
return json;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'venueId': json['venue_id'],
|
|
44
|
+
'note': json['note'] == null ? undefined : json['note'],
|
|
45
|
+
'formImage': json['form_image'] == null ? undefined : json['form_image'],
|
|
46
|
+
'technicianName': json['technician_name'],
|
|
47
|
+
'technicianLicenceNumber': json['technician_licence_number'],
|
|
48
|
+
'technicianCompanyName': json['technician_company_name'],
|
|
49
|
+
'date': json['date'] == null ? undefined : (new Date(json['date'])),
|
|
50
|
+
'systemWorking': json['system_working'] == null ? undefined : json['system_working'],
|
|
51
|
+
'systemRecording': json['system_recording'] == null ? undefined : json['system_recording'],
|
|
52
|
+
'cameras': json['cameras'] == null ? undefined : json['cameras'],
|
|
53
|
+
'recording': json['recording'] == null ? undefined : json['recording'],
|
|
54
|
+
'matchTime': json['match_time'] == null ? undefined : json['match_time'],
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
function CreateOrUpdateFormCRequestToJSON(json) {
|
|
58
|
+
return CreateOrUpdateFormCRequestToJSONTyped(json, false);
|
|
59
|
+
}
|
|
60
|
+
function CreateOrUpdateFormCRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
61
|
+
var _a;
|
|
62
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
63
|
+
if (value == null) {
|
|
64
|
+
return value;
|
|
65
|
+
}
|
|
66
|
+
return {
|
|
67
|
+
'venue_id': value['venueId'],
|
|
68
|
+
'note': value['note'],
|
|
69
|
+
'form_image': value['formImage'],
|
|
70
|
+
'technician_name': value['technicianName'],
|
|
71
|
+
'technician_licence_number': value['technicianLicenceNumber'],
|
|
72
|
+
'technician_company_name': value['technicianCompanyName'],
|
|
73
|
+
'date': value['date'] === null ? null : ((_a = value['date']) === null || _a === void 0 ? void 0 : _a.toISOString()),
|
|
74
|
+
'system_working': value['systemWorking'],
|
|
75
|
+
'system_recording': value['systemRecording'],
|
|
76
|
+
'cameras': value['cameras'],
|
|
77
|
+
'recording': value['recording'],
|
|
78
|
+
'match_time': value['matchTime'],
|
|
79
|
+
};
|
|
80
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CCTV Registers API
|
|
3
|
+
* API documentation for the CCTV Registers application
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 CreateOrUpdateManagerRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateOrUpdateManagerRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
22
|
+
*/
|
|
23
|
+
phone: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
28
|
+
*/
|
|
29
|
+
venueCode?: string | null;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {Date}
|
|
33
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
34
|
+
*/
|
|
35
|
+
rmlvLicenceIssueDate: Date;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {Date}
|
|
39
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
40
|
+
*/
|
|
41
|
+
rmlvLicenceExpiryDate: Date;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
46
|
+
*/
|
|
47
|
+
rmlvLicenceNumber: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
52
|
+
*/
|
|
53
|
+
rmlvLicenceImage?: string | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Date}
|
|
57
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
58
|
+
*/
|
|
59
|
+
licenceExpiryDate: Date;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
64
|
+
*/
|
|
65
|
+
licenceNumber: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {string}
|
|
69
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
70
|
+
*/
|
|
71
|
+
licenceImage?: string | null;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
76
|
+
*/
|
|
77
|
+
signature?: string | null;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {string}
|
|
81
|
+
* @memberof CreateOrUpdateManagerRequest
|
|
82
|
+
*/
|
|
83
|
+
profilePicture?: string | null;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Check if a given object implements the CreateOrUpdateManagerRequest interface.
|
|
87
|
+
*/
|
|
88
|
+
export declare function instanceOfCreateOrUpdateManagerRequest(value: object): value is CreateOrUpdateManagerRequest;
|
|
89
|
+
export declare function CreateOrUpdateManagerRequestFromJSON(json: any): CreateOrUpdateManagerRequest;
|
|
90
|
+
export declare function CreateOrUpdateManagerRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrUpdateManagerRequest;
|
|
91
|
+
export declare function CreateOrUpdateManagerRequestToJSON(json: any): CreateOrUpdateManagerRequest;
|
|
92
|
+
export declare function CreateOrUpdateManagerRequestToJSONTyped(value?: CreateOrUpdateManagerRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CCTV Registers API
|
|
6
|
+
* API documentation for the CCTV Registers application
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCreateOrUpdateManagerRequest = instanceOfCreateOrUpdateManagerRequest;
|
|
17
|
+
exports.CreateOrUpdateManagerRequestFromJSON = CreateOrUpdateManagerRequestFromJSON;
|
|
18
|
+
exports.CreateOrUpdateManagerRequestFromJSONTyped = CreateOrUpdateManagerRequestFromJSONTyped;
|
|
19
|
+
exports.CreateOrUpdateManagerRequestToJSON = CreateOrUpdateManagerRequestToJSON;
|
|
20
|
+
exports.CreateOrUpdateManagerRequestToJSONTyped = CreateOrUpdateManagerRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the CreateOrUpdateManagerRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfCreateOrUpdateManagerRequest(value) {
|
|
25
|
+
if (!('phone' in value) || value['phone'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('rmlvLicenceIssueDate' in value) || value['rmlvLicenceIssueDate'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('rmlvLicenceExpiryDate' in value) || value['rmlvLicenceExpiryDate'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('rmlvLicenceNumber' in value) || value['rmlvLicenceNumber'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('licenceExpiryDate' in value) || value['licenceExpiryDate'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('licenceNumber' in value) || value['licenceNumber'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
return true;
|
|
38
|
+
}
|
|
39
|
+
function CreateOrUpdateManagerRequestFromJSON(json) {
|
|
40
|
+
return CreateOrUpdateManagerRequestFromJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function CreateOrUpdateManagerRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
'phone': json['phone'],
|
|
48
|
+
'venueCode': json['venue_code'] == null ? undefined : json['venue_code'],
|
|
49
|
+
'rmlvLicenceIssueDate': (new Date(json['rmlv_licence_issue_date'])),
|
|
50
|
+
'rmlvLicenceExpiryDate': (new Date(json['rmlv_licence_expiry_date'])),
|
|
51
|
+
'rmlvLicenceNumber': json['rmlv_licence_number'],
|
|
52
|
+
'rmlvLicenceImage': json['rmlv_licence_image'] == null ? undefined : json['rmlv_licence_image'],
|
|
53
|
+
'licenceExpiryDate': (new Date(json['licence_expiry_date'])),
|
|
54
|
+
'licenceNumber': json['licence_number'],
|
|
55
|
+
'licenceImage': json['licence_image'] == null ? undefined : json['licence_image'],
|
|
56
|
+
'signature': json['signature'] == null ? undefined : json['signature'],
|
|
57
|
+
'profilePicture': json['profile_picture'] == null ? undefined : json['profile_picture'],
|
|
58
|
+
};
|
|
59
|
+
}
|
|
60
|
+
function CreateOrUpdateManagerRequestToJSON(json) {
|
|
61
|
+
return CreateOrUpdateManagerRequestToJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
function CreateOrUpdateManagerRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
64
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
return {
|
|
69
|
+
'phone': value['phone'],
|
|
70
|
+
'venue_code': value['venueCode'],
|
|
71
|
+
'rmlv_licence_issue_date': ((value['rmlvLicenceIssueDate']).toISOString()),
|
|
72
|
+
'rmlv_licence_expiry_date': ((value['rmlvLicenceExpiryDate']).toISOString()),
|
|
73
|
+
'rmlv_licence_number': value['rmlvLicenceNumber'],
|
|
74
|
+
'rmlv_licence_image': value['rmlvLicenceImage'],
|
|
75
|
+
'licence_expiry_date': ((value['licenceExpiryDate']).toISOString()),
|
|
76
|
+
'licence_number': value['licenceNumber'],
|
|
77
|
+
'licence_image': value['licenceImage'],
|
|
78
|
+
'signature': value['signature'],
|
|
79
|
+
'profile_picture': value['profilePicture'],
|
|
80
|
+
};
|
|
81
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CCTV Registers API
|
|
3
|
+
* API documentation for the CCTV Registers application
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 CreateOrUpdateQuestionRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateOrUpdateQuestionRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateOrUpdateQuestionRequest
|
|
22
|
+
*/
|
|
23
|
+
title: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof CreateOrUpdateQuestionRequest
|
|
28
|
+
*/
|
|
29
|
+
venueId?: number | null;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the CreateOrUpdateQuestionRequest interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfCreateOrUpdateQuestionRequest(value: object): value is CreateOrUpdateQuestionRequest;
|
|
35
|
+
export declare function CreateOrUpdateQuestionRequestFromJSON(json: any): CreateOrUpdateQuestionRequest;
|
|
36
|
+
export declare function CreateOrUpdateQuestionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrUpdateQuestionRequest;
|
|
37
|
+
export declare function CreateOrUpdateQuestionRequestToJSON(json: any): CreateOrUpdateQuestionRequest;
|
|
38
|
+
export declare function CreateOrUpdateQuestionRequestToJSONTyped(value?: CreateOrUpdateQuestionRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CCTV Registers API
|
|
6
|
+
* API documentation for the CCTV Registers application
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCreateOrUpdateQuestionRequest = instanceOfCreateOrUpdateQuestionRequest;
|
|
17
|
+
exports.CreateOrUpdateQuestionRequestFromJSON = CreateOrUpdateQuestionRequestFromJSON;
|
|
18
|
+
exports.CreateOrUpdateQuestionRequestFromJSONTyped = CreateOrUpdateQuestionRequestFromJSONTyped;
|
|
19
|
+
exports.CreateOrUpdateQuestionRequestToJSON = CreateOrUpdateQuestionRequestToJSON;
|
|
20
|
+
exports.CreateOrUpdateQuestionRequestToJSONTyped = CreateOrUpdateQuestionRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the CreateOrUpdateQuestionRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfCreateOrUpdateQuestionRequest(value) {
|
|
25
|
+
if (!('title' in value) || value['title'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
return true;
|
|
28
|
+
}
|
|
29
|
+
function CreateOrUpdateQuestionRequestFromJSON(json) {
|
|
30
|
+
return CreateOrUpdateQuestionRequestFromJSONTyped(json, false);
|
|
31
|
+
}
|
|
32
|
+
function CreateOrUpdateQuestionRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
33
|
+
if (json == null) {
|
|
34
|
+
return json;
|
|
35
|
+
}
|
|
36
|
+
return {
|
|
37
|
+
'title': json['title'],
|
|
38
|
+
'venueId': json['venue_id'] == null ? undefined : json['venue_id'],
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
function CreateOrUpdateQuestionRequestToJSON(json) {
|
|
42
|
+
return CreateOrUpdateQuestionRequestToJSONTyped(json, false);
|
|
43
|
+
}
|
|
44
|
+
function CreateOrUpdateQuestionRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
45
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
46
|
+
if (value == null) {
|
|
47
|
+
return value;
|
|
48
|
+
}
|
|
49
|
+
return {
|
|
50
|
+
'title': value['title'],
|
|
51
|
+
'venue_id': value['venueId'],
|
|
52
|
+
};
|
|
53
|
+
}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CCTV Registers API
|
|
3
|
+
* API documentation for the CCTV Registers application
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 CreateOrUpdateTechnicianRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateOrUpdateTechnicianRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {Date}
|
|
21
|
+
* @memberof CreateOrUpdateTechnicianRequest
|
|
22
|
+
*/
|
|
23
|
+
licenceExpiryDate: Date;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateOrUpdateTechnicianRequest
|
|
28
|
+
*/
|
|
29
|
+
companyName: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof CreateOrUpdateTechnicianRequest
|
|
34
|
+
*/
|
|
35
|
+
profilePicture?: string | null;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof CreateOrUpdateTechnicianRequest
|
|
40
|
+
*/
|
|
41
|
+
phone: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof CreateOrUpdateTechnicianRequest
|
|
46
|
+
*/
|
|
47
|
+
licenceNumber: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Check if a given object implements the CreateOrUpdateTechnicianRequest interface.
|
|
51
|
+
*/
|
|
52
|
+
export declare function instanceOfCreateOrUpdateTechnicianRequest(value: object): value is CreateOrUpdateTechnicianRequest;
|
|
53
|
+
export declare function CreateOrUpdateTechnicianRequestFromJSON(json: any): CreateOrUpdateTechnicianRequest;
|
|
54
|
+
export declare function CreateOrUpdateTechnicianRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrUpdateTechnicianRequest;
|
|
55
|
+
export declare function CreateOrUpdateTechnicianRequestToJSON(json: any): CreateOrUpdateTechnicianRequest;
|
|
56
|
+
export declare function CreateOrUpdateTechnicianRequestToJSONTyped(value?: CreateOrUpdateTechnicianRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* CCTV Registers API
|
|
6
|
+
* API documentation for the CCTV Registers application
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 0.1.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfCreateOrUpdateTechnicianRequest = instanceOfCreateOrUpdateTechnicianRequest;
|
|
17
|
+
exports.CreateOrUpdateTechnicianRequestFromJSON = CreateOrUpdateTechnicianRequestFromJSON;
|
|
18
|
+
exports.CreateOrUpdateTechnicianRequestFromJSONTyped = CreateOrUpdateTechnicianRequestFromJSONTyped;
|
|
19
|
+
exports.CreateOrUpdateTechnicianRequestToJSON = CreateOrUpdateTechnicianRequestToJSON;
|
|
20
|
+
exports.CreateOrUpdateTechnicianRequestToJSONTyped = CreateOrUpdateTechnicianRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the CreateOrUpdateTechnicianRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfCreateOrUpdateTechnicianRequest(value) {
|
|
25
|
+
if (!('licenceExpiryDate' in value) || value['licenceExpiryDate'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('companyName' in value) || value['companyName'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('phone' in value) || value['phone'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('licenceNumber' in value) || value['licenceNumber'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
return true;
|
|
34
|
+
}
|
|
35
|
+
function CreateOrUpdateTechnicianRequestFromJSON(json) {
|
|
36
|
+
return CreateOrUpdateTechnicianRequestFromJSONTyped(json, false);
|
|
37
|
+
}
|
|
38
|
+
function CreateOrUpdateTechnicianRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
39
|
+
if (json == null) {
|
|
40
|
+
return json;
|
|
41
|
+
}
|
|
42
|
+
return {
|
|
43
|
+
'licenceExpiryDate': (new Date(json['licence_expiry_date'])),
|
|
44
|
+
'companyName': json['company_name'],
|
|
45
|
+
'profilePicture': json['profile_picture'] == null ? undefined : json['profile_picture'],
|
|
46
|
+
'phone': json['phone'],
|
|
47
|
+
'licenceNumber': json['licence_number'],
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
function CreateOrUpdateTechnicianRequestToJSON(json) {
|
|
51
|
+
return CreateOrUpdateTechnicianRequestToJSONTyped(json, false);
|
|
52
|
+
}
|
|
53
|
+
function CreateOrUpdateTechnicianRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
54
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
55
|
+
if (value == null) {
|
|
56
|
+
return value;
|
|
57
|
+
}
|
|
58
|
+
return {
|
|
59
|
+
'licence_expiry_date': ((value['licenceExpiryDate']).toISOString()),
|
|
60
|
+
'company_name': value['companyName'],
|
|
61
|
+
'profile_picture': value['profilePicture'],
|
|
62
|
+
'phone': value['phone'],
|
|
63
|
+
'licence_number': value['licenceNumber'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CCTV Registers API
|
|
3
|
+
* API documentation for the CCTV Registers application
|
|
4
|
+
*
|
|
5
|
+
* The version of the OpenAPI document: 0.1.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 { CreateOrUpdateVenueRequestHoursInner } from './CreateOrUpdateVenueRequestHoursInner';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface CreateOrUpdateVenueRequest
|
|
17
|
+
*/
|
|
18
|
+
export interface CreateOrUpdateVenueRequest {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
23
|
+
*/
|
|
24
|
+
address: string;
|
|
25
|
+
/**
|
|
26
|
+
*
|
|
27
|
+
* @type {Array<CreateOrUpdateVenueRequestHoursInner>}
|
|
28
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
29
|
+
*/
|
|
30
|
+
hours: Array<CreateOrUpdateVenueRequestHoursInner>;
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @type {Array<string>}
|
|
34
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
35
|
+
*/
|
|
36
|
+
notTradingDays?: Array<string>;
|
|
37
|
+
/**
|
|
38
|
+
*
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
41
|
+
*/
|
|
42
|
+
latitude: string;
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
47
|
+
*/
|
|
48
|
+
longitude: string;
|
|
49
|
+
/**
|
|
50
|
+
*
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
53
|
+
*/
|
|
54
|
+
companyId: string;
|
|
55
|
+
/**
|
|
56
|
+
*
|
|
57
|
+
* @type {boolean}
|
|
58
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
59
|
+
*/
|
|
60
|
+
appManagerSelection?: boolean;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
65
|
+
*/
|
|
66
|
+
name: string;
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
71
|
+
*/
|
|
72
|
+
code: string;
|
|
73
|
+
/**
|
|
74
|
+
*
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
77
|
+
*/
|
|
78
|
+
licenceNumber: string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof CreateOrUpdateVenueRequest
|
|
83
|
+
*/
|
|
84
|
+
managerId?: string;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Check if a given object implements the CreateOrUpdateVenueRequest interface.
|
|
88
|
+
*/
|
|
89
|
+
export declare function instanceOfCreateOrUpdateVenueRequest(value: object): value is CreateOrUpdateVenueRequest;
|
|
90
|
+
export declare function CreateOrUpdateVenueRequestFromJSON(json: any): CreateOrUpdateVenueRequest;
|
|
91
|
+
export declare function CreateOrUpdateVenueRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrUpdateVenueRequest;
|
|
92
|
+
export declare function CreateOrUpdateVenueRequestToJSON(json: any): CreateOrUpdateVenueRequest;
|
|
93
|
+
export declare function CreateOrUpdateVenueRequestToJSONTyped(value?: CreateOrUpdateVenueRequest | null, ignoreDiscriminator?: boolean): any;
|