@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,86 @@
|
|
|
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.instanceOfCreateOrUpdateVenueRequest = instanceOfCreateOrUpdateVenueRequest;
|
|
17
|
+
exports.CreateOrUpdateVenueRequestFromJSON = CreateOrUpdateVenueRequestFromJSON;
|
|
18
|
+
exports.CreateOrUpdateVenueRequestFromJSONTyped = CreateOrUpdateVenueRequestFromJSONTyped;
|
|
19
|
+
exports.CreateOrUpdateVenueRequestToJSON = CreateOrUpdateVenueRequestToJSON;
|
|
20
|
+
exports.CreateOrUpdateVenueRequestToJSONTyped = CreateOrUpdateVenueRequestToJSONTyped;
|
|
21
|
+
var CreateOrUpdateVenueRequestHoursInner_1 = require("./CreateOrUpdateVenueRequestHoursInner");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the CreateOrUpdateVenueRequest interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfCreateOrUpdateVenueRequest(value) {
|
|
26
|
+
if (!('address' in value) || value['address'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('hours' in value) || value['hours'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('latitude' in value) || value['latitude'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
if (!('longitude' in value) || value['longitude'] === undefined)
|
|
33
|
+
return false;
|
|
34
|
+
if (!('companyId' in value) || value['companyId'] === undefined)
|
|
35
|
+
return false;
|
|
36
|
+
if (!('name' in value) || value['name'] === undefined)
|
|
37
|
+
return false;
|
|
38
|
+
if (!('code' in value) || value['code'] === undefined)
|
|
39
|
+
return false;
|
|
40
|
+
if (!('licenceNumber' in value) || value['licenceNumber'] === undefined)
|
|
41
|
+
return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
function CreateOrUpdateVenueRequestFromJSON(json) {
|
|
45
|
+
return CreateOrUpdateVenueRequestFromJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
function CreateOrUpdateVenueRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
48
|
+
if (json == null) {
|
|
49
|
+
return json;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'address': json['address'],
|
|
53
|
+
'hours': (json['hours'].map(CreateOrUpdateVenueRequestHoursInner_1.CreateOrUpdateVenueRequestHoursInnerFromJSON)),
|
|
54
|
+
'notTradingDays': json['not_trading_days'] == null ? undefined : json['not_trading_days'],
|
|
55
|
+
'latitude': json['latitude'],
|
|
56
|
+
'longitude': json['longitude'],
|
|
57
|
+
'companyId': json['company_id'],
|
|
58
|
+
'appManagerSelection': json['app_manager_selection'] == null ? undefined : json['app_manager_selection'],
|
|
59
|
+
'name': json['name'],
|
|
60
|
+
'code': json['code'],
|
|
61
|
+
'licenceNumber': json['licence_number'],
|
|
62
|
+
'managerId': json['manager_id'] == null ? undefined : json['manager_id'],
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
function CreateOrUpdateVenueRequestToJSON(json) {
|
|
66
|
+
return CreateOrUpdateVenueRequestToJSONTyped(json, false);
|
|
67
|
+
}
|
|
68
|
+
function CreateOrUpdateVenueRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
69
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
70
|
+
if (value == null) {
|
|
71
|
+
return value;
|
|
72
|
+
}
|
|
73
|
+
return {
|
|
74
|
+
'address': value['address'],
|
|
75
|
+
'hours': (value['hours'].map(CreateOrUpdateVenueRequestHoursInner_1.CreateOrUpdateVenueRequestHoursInnerToJSON)),
|
|
76
|
+
'not_trading_days': value['notTradingDays'],
|
|
77
|
+
'latitude': value['latitude'],
|
|
78
|
+
'longitude': value['longitude'],
|
|
79
|
+
'company_id': value['companyId'],
|
|
80
|
+
'app_manager_selection': value['appManagerSelection'],
|
|
81
|
+
'name': value['name'],
|
|
82
|
+
'code': value['code'],
|
|
83
|
+
'licence_number': value['licenceNumber'],
|
|
84
|
+
'manager_id': value['managerId'],
|
|
85
|
+
};
|
|
86
|
+
}
|
|
@@ -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 CreateOrUpdateVenueRequestHoursInner
|
|
16
|
+
*/
|
|
17
|
+
export interface CreateOrUpdateVenueRequestHoursInner {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof CreateOrUpdateVenueRequestHoursInner
|
|
22
|
+
*/
|
|
23
|
+
open: string;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof CreateOrUpdateVenueRequestHoursInner
|
|
28
|
+
*/
|
|
29
|
+
close: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the CreateOrUpdateVenueRequestHoursInner interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfCreateOrUpdateVenueRequestHoursInner(value: object): value is CreateOrUpdateVenueRequestHoursInner;
|
|
35
|
+
export declare function CreateOrUpdateVenueRequestHoursInnerFromJSON(json: any): CreateOrUpdateVenueRequestHoursInner;
|
|
36
|
+
export declare function CreateOrUpdateVenueRequestHoursInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateOrUpdateVenueRequestHoursInner;
|
|
37
|
+
export declare function CreateOrUpdateVenueRequestHoursInnerToJSON(json: any): CreateOrUpdateVenueRequestHoursInner;
|
|
38
|
+
export declare function CreateOrUpdateVenueRequestHoursInnerToJSONTyped(value?: CreateOrUpdateVenueRequestHoursInner | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
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.instanceOfCreateOrUpdateVenueRequestHoursInner = instanceOfCreateOrUpdateVenueRequestHoursInner;
|
|
17
|
+
exports.CreateOrUpdateVenueRequestHoursInnerFromJSON = CreateOrUpdateVenueRequestHoursInnerFromJSON;
|
|
18
|
+
exports.CreateOrUpdateVenueRequestHoursInnerFromJSONTyped = CreateOrUpdateVenueRequestHoursInnerFromJSONTyped;
|
|
19
|
+
exports.CreateOrUpdateVenueRequestHoursInnerToJSON = CreateOrUpdateVenueRequestHoursInnerToJSON;
|
|
20
|
+
exports.CreateOrUpdateVenueRequestHoursInnerToJSONTyped = CreateOrUpdateVenueRequestHoursInnerToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the CreateOrUpdateVenueRequestHoursInner interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfCreateOrUpdateVenueRequestHoursInner(value) {
|
|
25
|
+
if (!('open' in value) || value['open'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('close' in value) || value['close'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function CreateOrUpdateVenueRequestHoursInnerFromJSON(json) {
|
|
32
|
+
return CreateOrUpdateVenueRequestHoursInnerFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function CreateOrUpdateVenueRequestHoursInnerFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'open': json['open'],
|
|
40
|
+
'close': json['close'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function CreateOrUpdateVenueRequestHoursInnerToJSON(json) {
|
|
44
|
+
return CreateOrUpdateVenueRequestHoursInnerToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function CreateOrUpdateVenueRequestHoursInnerToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'open': value['open'],
|
|
53
|
+
'close': value['close'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -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 FindNearbyVenuesRequest
|
|
16
|
+
*/
|
|
17
|
+
export interface FindNearbyVenuesRequest {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof FindNearbyVenuesRequest
|
|
22
|
+
*/
|
|
23
|
+
longitude: number;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof FindNearbyVenuesRequest
|
|
28
|
+
*/
|
|
29
|
+
latitude: number;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the FindNearbyVenuesRequest interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfFindNearbyVenuesRequest(value: object): value is FindNearbyVenuesRequest;
|
|
35
|
+
export declare function FindNearbyVenuesRequestFromJSON(json: any): FindNearbyVenuesRequest;
|
|
36
|
+
export declare function FindNearbyVenuesRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): FindNearbyVenuesRequest;
|
|
37
|
+
export declare function FindNearbyVenuesRequestToJSON(json: any): FindNearbyVenuesRequest;
|
|
38
|
+
export declare function FindNearbyVenuesRequestToJSONTyped(value?: FindNearbyVenuesRequest | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,55 @@
|
|
|
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.instanceOfFindNearbyVenuesRequest = instanceOfFindNearbyVenuesRequest;
|
|
17
|
+
exports.FindNearbyVenuesRequestFromJSON = FindNearbyVenuesRequestFromJSON;
|
|
18
|
+
exports.FindNearbyVenuesRequestFromJSONTyped = FindNearbyVenuesRequestFromJSONTyped;
|
|
19
|
+
exports.FindNearbyVenuesRequestToJSON = FindNearbyVenuesRequestToJSON;
|
|
20
|
+
exports.FindNearbyVenuesRequestToJSONTyped = FindNearbyVenuesRequestToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the FindNearbyVenuesRequest interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfFindNearbyVenuesRequest(value) {
|
|
25
|
+
if (!('longitude' in value) || value['longitude'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('latitude' in value) || value['latitude'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function FindNearbyVenuesRequestFromJSON(json) {
|
|
32
|
+
return FindNearbyVenuesRequestFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function FindNearbyVenuesRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'longitude': json['longitude'],
|
|
40
|
+
'latitude': json['latitude'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function FindNearbyVenuesRequestToJSON(json) {
|
|
44
|
+
return FindNearbyVenuesRequestToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function FindNearbyVenuesRequestToJSONTyped(value, ignoreDiscriminator) {
|
|
47
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'longitude': value['longitude'],
|
|
53
|
+
'latitude': value['latitude'],
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
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 FormAResource
|
|
16
|
+
*/
|
|
17
|
+
export interface FormAResource {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof FormAResource
|
|
22
|
+
*/
|
|
23
|
+
id?: number | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof FormAResource
|
|
28
|
+
*/
|
|
29
|
+
signature: string;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {object}
|
|
33
|
+
* @memberof FormAResource
|
|
34
|
+
*/
|
|
35
|
+
answers: object;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof FormAResource
|
|
40
|
+
*/
|
|
41
|
+
jobNumber?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof FormAResource
|
|
46
|
+
*/
|
|
47
|
+
managerId?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof FormAResource
|
|
52
|
+
*/
|
|
53
|
+
venueId?: string | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof FormAResource
|
|
58
|
+
*/
|
|
59
|
+
managerName: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof FormAResource
|
|
64
|
+
*/
|
|
65
|
+
managerLicenceNumber: string;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {object}
|
|
69
|
+
* @memberof FormAResource
|
|
70
|
+
*/
|
|
71
|
+
managerLicenceExpiry: object;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof FormAResource
|
|
76
|
+
*/
|
|
77
|
+
managerRmlvLicenceNumber: string;
|
|
78
|
+
/**
|
|
79
|
+
*
|
|
80
|
+
* @type {object}
|
|
81
|
+
* @memberof FormAResource
|
|
82
|
+
*/
|
|
83
|
+
managerRmlvLicenceExpiry: object;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof FormAResource
|
|
88
|
+
*/
|
|
89
|
+
emailNote?: string | null;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {number}
|
|
93
|
+
* @memberof FormAResource
|
|
94
|
+
*/
|
|
95
|
+
longitude: number;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {number}
|
|
99
|
+
* @memberof FormAResource
|
|
100
|
+
*/
|
|
101
|
+
latitude: number;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {object}
|
|
105
|
+
* @memberof FormAResource
|
|
106
|
+
*/
|
|
107
|
+
submittedAt: object;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {boolean}
|
|
111
|
+
* @memberof FormAResource
|
|
112
|
+
*/
|
|
113
|
+
isEditable: boolean;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* Check if a given object implements the FormAResource interface.
|
|
117
|
+
*/
|
|
118
|
+
export declare function instanceOfFormAResource(value: object): value is FormAResource;
|
|
119
|
+
export declare function FormAResourceFromJSON(json: any): FormAResource;
|
|
120
|
+
export declare function FormAResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormAResource;
|
|
121
|
+
export declare function FormAResourceToJSON(json: any): FormAResource;
|
|
122
|
+
export declare function FormAResourceToJSONTyped(value?: FormAResource | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,101 @@
|
|
|
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.instanceOfFormAResource = instanceOfFormAResource;
|
|
17
|
+
exports.FormAResourceFromJSON = FormAResourceFromJSON;
|
|
18
|
+
exports.FormAResourceFromJSONTyped = FormAResourceFromJSONTyped;
|
|
19
|
+
exports.FormAResourceToJSON = FormAResourceToJSON;
|
|
20
|
+
exports.FormAResourceToJSONTyped = FormAResourceToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the FormAResource interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfFormAResource(value) {
|
|
25
|
+
if (!('signature' in value) || value['signature'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('answers' in value) || value['answers'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
if (!('managerName' in value) || value['managerName'] === undefined)
|
|
30
|
+
return false;
|
|
31
|
+
if (!('managerLicenceNumber' in value) || value['managerLicenceNumber'] === undefined)
|
|
32
|
+
return false;
|
|
33
|
+
if (!('managerLicenceExpiry' in value) || value['managerLicenceExpiry'] === undefined)
|
|
34
|
+
return false;
|
|
35
|
+
if (!('managerRmlvLicenceNumber' in value) || value['managerRmlvLicenceNumber'] === undefined)
|
|
36
|
+
return false;
|
|
37
|
+
if (!('managerRmlvLicenceExpiry' in value) || value['managerRmlvLicenceExpiry'] === undefined)
|
|
38
|
+
return false;
|
|
39
|
+
if (!('longitude' in value) || value['longitude'] === undefined)
|
|
40
|
+
return false;
|
|
41
|
+
if (!('latitude' in value) || value['latitude'] === undefined)
|
|
42
|
+
return false;
|
|
43
|
+
if (!('submittedAt' in value) || value['submittedAt'] === undefined)
|
|
44
|
+
return false;
|
|
45
|
+
if (!('isEditable' in value) || value['isEditable'] === undefined)
|
|
46
|
+
return false;
|
|
47
|
+
return true;
|
|
48
|
+
}
|
|
49
|
+
function FormAResourceFromJSON(json) {
|
|
50
|
+
return FormAResourceFromJSONTyped(json, false);
|
|
51
|
+
}
|
|
52
|
+
function FormAResourceFromJSONTyped(json, ignoreDiscriminator) {
|
|
53
|
+
if (json == null) {
|
|
54
|
+
return json;
|
|
55
|
+
}
|
|
56
|
+
return {
|
|
57
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
58
|
+
'signature': json['signature'],
|
|
59
|
+
'answers': json['answers'],
|
|
60
|
+
'jobNumber': json['job_number'] == null ? undefined : json['job_number'],
|
|
61
|
+
'managerId': json['manager_id'] == null ? undefined : json['manager_id'],
|
|
62
|
+
'venueId': json['venue_id'] == null ? undefined : json['venue_id'],
|
|
63
|
+
'managerName': json['manager_name'],
|
|
64
|
+
'managerLicenceNumber': json['manager_licence_number'],
|
|
65
|
+
'managerLicenceExpiry': json['manager_licence_expiry'],
|
|
66
|
+
'managerRmlvLicenceNumber': json['manager_rmlv_licence_number'],
|
|
67
|
+
'managerRmlvLicenceExpiry': json['manager_rmlv_licence_expiry'],
|
|
68
|
+
'emailNote': json['email_note'] == null ? undefined : json['email_note'],
|
|
69
|
+
'longitude': json['longitude'],
|
|
70
|
+
'latitude': json['latitude'],
|
|
71
|
+
'submittedAt': json['submitted_at'],
|
|
72
|
+
'isEditable': json['is_editable'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
function FormAResourceToJSON(json) {
|
|
76
|
+
return FormAResourceToJSONTyped(json, false);
|
|
77
|
+
}
|
|
78
|
+
function FormAResourceToJSONTyped(value, ignoreDiscriminator) {
|
|
79
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
80
|
+
if (value == null) {
|
|
81
|
+
return value;
|
|
82
|
+
}
|
|
83
|
+
return {
|
|
84
|
+
'id': value['id'],
|
|
85
|
+
'signature': value['signature'],
|
|
86
|
+
'answers': value['answers'],
|
|
87
|
+
'job_number': value['jobNumber'],
|
|
88
|
+
'manager_id': value['managerId'],
|
|
89
|
+
'venue_id': value['venueId'],
|
|
90
|
+
'manager_name': value['managerName'],
|
|
91
|
+
'manager_licence_number': value['managerLicenceNumber'],
|
|
92
|
+
'manager_licence_expiry': value['managerLicenceExpiry'],
|
|
93
|
+
'manager_rmlv_licence_number': value['managerRmlvLicenceNumber'],
|
|
94
|
+
'manager_rmlv_licence_expiry': value['managerRmlvLicenceExpiry'],
|
|
95
|
+
'email_note': value['emailNote'],
|
|
96
|
+
'longitude': value['longitude'],
|
|
97
|
+
'latitude': value['latitude'],
|
|
98
|
+
'submitted_at': value['submittedAt'],
|
|
99
|
+
'is_editable': value['isEditable'],
|
|
100
|
+
};
|
|
101
|
+
}
|
|
@@ -0,0 +1,33 @@
|
|
|
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 { FormAResource } from './FormAResource';
|
|
13
|
+
/**
|
|
14
|
+
*
|
|
15
|
+
* @export
|
|
16
|
+
* @interface FormAResourceArrayResponse
|
|
17
|
+
*/
|
|
18
|
+
export interface FormAResourceArrayResponse {
|
|
19
|
+
/**
|
|
20
|
+
*
|
|
21
|
+
* @type {Array<FormAResource>}
|
|
22
|
+
* @memberof FormAResourceArrayResponse
|
|
23
|
+
*/
|
|
24
|
+
data?: Array<FormAResource>;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the FormAResourceArrayResponse interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfFormAResourceArrayResponse(value: object): value is FormAResourceArrayResponse;
|
|
30
|
+
export declare function FormAResourceArrayResponseFromJSON(json: any): FormAResourceArrayResponse;
|
|
31
|
+
export declare function FormAResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormAResourceArrayResponse;
|
|
32
|
+
export declare function FormAResourceArrayResponseToJSON(json: any): FormAResourceArrayResponse;
|
|
33
|
+
export declare function FormAResourceArrayResponseToJSONTyped(value?: FormAResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;
|
|
@@ -0,0 +1,50 @@
|
|
|
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.instanceOfFormAResourceArrayResponse = instanceOfFormAResourceArrayResponse;
|
|
17
|
+
exports.FormAResourceArrayResponseFromJSON = FormAResourceArrayResponseFromJSON;
|
|
18
|
+
exports.FormAResourceArrayResponseFromJSONTyped = FormAResourceArrayResponseFromJSONTyped;
|
|
19
|
+
exports.FormAResourceArrayResponseToJSON = FormAResourceArrayResponseToJSON;
|
|
20
|
+
exports.FormAResourceArrayResponseToJSONTyped = FormAResourceArrayResponseToJSONTyped;
|
|
21
|
+
var FormAResource_1 = require("./FormAResource");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the FormAResourceArrayResponse interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfFormAResourceArrayResponse(value) {
|
|
26
|
+
return true;
|
|
27
|
+
}
|
|
28
|
+
function FormAResourceArrayResponseFromJSON(json) {
|
|
29
|
+
return FormAResourceArrayResponseFromJSONTyped(json, false);
|
|
30
|
+
}
|
|
31
|
+
function FormAResourceArrayResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
32
|
+
if (json == null) {
|
|
33
|
+
return json;
|
|
34
|
+
}
|
|
35
|
+
return {
|
|
36
|
+
'data': json['data'] == null ? undefined : (json['data'].map(FormAResource_1.FormAResourceFromJSON)),
|
|
37
|
+
};
|
|
38
|
+
}
|
|
39
|
+
function FormAResourceArrayResponseToJSON(json) {
|
|
40
|
+
return FormAResourceArrayResponseToJSONTyped(json, false);
|
|
41
|
+
}
|
|
42
|
+
function FormAResourceArrayResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
43
|
+
if (ignoreDiscriminator === void 0) { ignoreDiscriminator = false; }
|
|
44
|
+
if (value == null) {
|
|
45
|
+
return value;
|
|
46
|
+
}
|
|
47
|
+
return {
|
|
48
|
+
'data': value['data'] == null ? undefined : (value['data'].map(FormAResource_1.FormAResourceToJSON)),
|
|
49
|
+
};
|
|
50
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
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 FormBResource
|
|
16
|
+
*/
|
|
17
|
+
export interface FormBResource {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {number}
|
|
21
|
+
* @memberof FormBResource
|
|
22
|
+
*/
|
|
23
|
+
id?: number | null;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @type {number}
|
|
27
|
+
* @memberof FormBResource
|
|
28
|
+
*/
|
|
29
|
+
venueId: number;
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof FormBResource
|
|
34
|
+
*/
|
|
35
|
+
description: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof FormBResource
|
|
40
|
+
*/
|
|
41
|
+
emailNote?: string | null;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof FormBResource
|
|
46
|
+
*/
|
|
47
|
+
arrangementDate?: string | null;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof FormBResource
|
|
52
|
+
*/
|
|
53
|
+
repairDate?: string | null;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof FormBResource
|
|
58
|
+
*/
|
|
59
|
+
formAId?: string | null;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof FormBResource
|
|
64
|
+
*/
|
|
65
|
+
arrangementManagerName?: string | null;
|
|
66
|
+
/**
|
|
67
|
+
*
|
|
68
|
+
* @type {object}
|
|
69
|
+
* @memberof FormBResource
|
|
70
|
+
*/
|
|
71
|
+
reportedDate: object;
|
|
72
|
+
/**
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof FormBResource
|
|
76
|
+
*/
|
|
77
|
+
reporterName: string;
|
|
78
|
+
}
|
|
79
|
+
/**
|
|
80
|
+
* Check if a given object implements the FormBResource interface.
|
|
81
|
+
*/
|
|
82
|
+
export declare function instanceOfFormBResource(value: object): value is FormBResource;
|
|
83
|
+
export declare function FormBResourceFromJSON(json: any): FormBResource;
|
|
84
|
+
export declare function FormBResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): FormBResource;
|
|
85
|
+
export declare function FormBResourceToJSON(json: any): FormBResource;
|
|
86
|
+
export declare function FormBResourceToJSONTyped(value?: FormBResource | null, ignoreDiscriminator?: boolean): any;
|