ob-bms-sdk 0.0.50 → 0.0.52
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/api/api.ts +67 -67
- package/dist/api/api.d.ts +68 -68
- package/package.json +1 -1
package/api/api.ts
CHANGED
|
@@ -421,47 +421,47 @@ export interface FetchParkingResult {
|
|
|
421
421
|
export interface FindMemberResult {
|
|
422
422
|
/**
|
|
423
423
|
*
|
|
424
|
-
* @type {
|
|
424
|
+
* @type {FindMemberResultUpdatedAt}
|
|
425
425
|
* @memberof FindMemberResult
|
|
426
426
|
*/
|
|
427
|
-
'
|
|
427
|
+
'updated_at': FindMemberResultUpdatedAt;
|
|
428
428
|
/**
|
|
429
429
|
*
|
|
430
|
-
* @type {
|
|
430
|
+
* @type {FindMemberResultUpdatedAt}
|
|
431
431
|
* @memberof FindMemberResult
|
|
432
432
|
*/
|
|
433
|
-
'
|
|
433
|
+
'created_at': FindMemberResultUpdatedAt;
|
|
434
434
|
/**
|
|
435
435
|
*
|
|
436
|
-
* @type {
|
|
436
|
+
* @type {JsonValue}
|
|
437
437
|
* @memberof FindMemberResult
|
|
438
438
|
*/
|
|
439
|
-
'
|
|
439
|
+
'metadata'?: JsonValue | null;
|
|
440
440
|
/**
|
|
441
441
|
*
|
|
442
|
-
* @type {
|
|
442
|
+
* @type {string}
|
|
443
443
|
* @memberof FindMemberResult
|
|
444
444
|
*/
|
|
445
|
-
'
|
|
445
|
+
'account_id'?: string | null;
|
|
446
446
|
/**
|
|
447
447
|
*
|
|
448
|
-
* @type {
|
|
448
|
+
* @type {string}
|
|
449
449
|
* @memberof FindMemberResult
|
|
450
450
|
*/
|
|
451
|
-
'
|
|
451
|
+
'uid': string;
|
|
452
452
|
/**
|
|
453
453
|
*
|
|
454
|
-
* @type {
|
|
454
|
+
* @type {string}
|
|
455
455
|
* @memberof FindMemberResult
|
|
456
456
|
*/
|
|
457
|
-
'
|
|
457
|
+
'id': string;
|
|
458
458
|
}
|
|
459
459
|
/**
|
|
460
460
|
*
|
|
461
461
|
* @export
|
|
462
|
-
* @interface
|
|
462
|
+
* @interface FindMemberResultUpdatedAt
|
|
463
463
|
*/
|
|
464
|
-
export interface
|
|
464
|
+
export interface FindMemberResultUpdatedAt {
|
|
465
465
|
}
|
|
466
466
|
/**
|
|
467
467
|
*
|
|
@@ -944,16 +944,16 @@ export interface ParkingLotData {
|
|
|
944
944
|
export interface ParkingRedemptionRateResult {
|
|
945
945
|
/**
|
|
946
946
|
*
|
|
947
|
-
* @type {
|
|
947
|
+
* @type {RateDetail}
|
|
948
948
|
* @memberof ParkingRedemptionRateResult
|
|
949
949
|
*/
|
|
950
|
-
'
|
|
950
|
+
'detail': RateDetail;
|
|
951
951
|
/**
|
|
952
952
|
*
|
|
953
|
-
* @type {
|
|
953
|
+
* @type {number}
|
|
954
954
|
* @memberof ParkingRedemptionRateResult
|
|
955
955
|
*/
|
|
956
|
-
'
|
|
956
|
+
'code': number;
|
|
957
957
|
}
|
|
958
958
|
/**
|
|
959
959
|
*
|
|
@@ -963,64 +963,64 @@ export interface ParkingRedemptionRateResult {
|
|
|
963
963
|
export interface ParkingTicketResult {
|
|
964
964
|
/**
|
|
965
965
|
*
|
|
966
|
-
* @type {
|
|
966
|
+
* @type {number}
|
|
967
967
|
* @memberof ParkingTicketResult
|
|
968
968
|
*/
|
|
969
|
-
'
|
|
969
|
+
'vehicle_type_id': number;
|
|
970
970
|
/**
|
|
971
971
|
*
|
|
972
|
-
* @type {
|
|
972
|
+
* @type {number}
|
|
973
973
|
* @memberof ParkingTicketResult
|
|
974
974
|
*/
|
|
975
|
-
'
|
|
975
|
+
'member_type_id': number;
|
|
976
976
|
/**
|
|
977
977
|
*
|
|
978
|
-
* @type {
|
|
978
|
+
* @type {RateDetail}
|
|
979
979
|
* @memberof ParkingTicketResult
|
|
980
980
|
*/
|
|
981
|
-
'
|
|
981
|
+
'rate_detail': RateDetail;
|
|
982
982
|
/**
|
|
983
983
|
*
|
|
984
984
|
* @type {string}
|
|
985
985
|
* @memberof ParkingTicketResult
|
|
986
986
|
*/
|
|
987
|
-
'
|
|
987
|
+
'parked_at': string;
|
|
988
988
|
/**
|
|
989
989
|
*
|
|
990
|
-
* @type {
|
|
990
|
+
* @type {string}
|
|
991
991
|
* @memberof ParkingTicketResult
|
|
992
992
|
*/
|
|
993
|
-
'
|
|
993
|
+
'member_id': string;
|
|
994
994
|
/**
|
|
995
995
|
*
|
|
996
|
-
* @type {
|
|
996
|
+
* @type {number}
|
|
997
997
|
* @memberof ParkingTicketResult
|
|
998
998
|
*/
|
|
999
|
-
'
|
|
999
|
+
'total_fee': number;
|
|
1000
1000
|
/**
|
|
1001
1001
|
*
|
|
1002
1002
|
* @type {string}
|
|
1003
1003
|
* @memberof ParkingTicketResult
|
|
1004
1004
|
*/
|
|
1005
|
-
'
|
|
1005
|
+
'vehicle_type': string;
|
|
1006
1006
|
/**
|
|
1007
1007
|
*
|
|
1008
|
-
* @type {
|
|
1008
|
+
* @type {string}
|
|
1009
1009
|
* @memberof ParkingTicketResult
|
|
1010
1010
|
*/
|
|
1011
|
-
'
|
|
1011
|
+
'ticket_number': string;
|
|
1012
1012
|
/**
|
|
1013
1013
|
*
|
|
1014
|
-
* @type {
|
|
1014
|
+
* @type {string}
|
|
1015
1015
|
* @memberof ParkingTicketResult
|
|
1016
1016
|
*/
|
|
1017
|
-
'
|
|
1017
|
+
'plate_number': string;
|
|
1018
1018
|
/**
|
|
1019
1019
|
*
|
|
1020
|
-
* @type {
|
|
1020
|
+
* @type {string}
|
|
1021
1021
|
* @memberof ParkingTicketResult
|
|
1022
1022
|
*/
|
|
1023
|
-
'
|
|
1023
|
+
'id': string;
|
|
1024
1024
|
}
|
|
1025
1025
|
/**
|
|
1026
1026
|
*
|
|
@@ -1879,16 +1879,16 @@ export interface VisitorSchedule {
|
|
|
1879
1879
|
'floor_id': string;
|
|
1880
1880
|
/**
|
|
1881
1881
|
*
|
|
1882
|
-
* @type {
|
|
1882
|
+
* @type {FindMemberResultUpdatedAt}
|
|
1883
1883
|
* @memberof VisitorSchedule
|
|
1884
1884
|
*/
|
|
1885
|
-
'from':
|
|
1885
|
+
'from': FindMemberResultUpdatedAt;
|
|
1886
1886
|
/**
|
|
1887
1887
|
*
|
|
1888
|
-
* @type {
|
|
1888
|
+
* @type {FindMemberResultUpdatedAt}
|
|
1889
1889
|
* @memberof VisitorSchedule
|
|
1890
1890
|
*/
|
|
1891
|
-
'to':
|
|
1891
|
+
'to': FindMemberResultUpdatedAt;
|
|
1892
1892
|
/**
|
|
1893
1893
|
*
|
|
1894
1894
|
* @type {object}
|
|
@@ -2247,22 +2247,22 @@ export interface WrappedResponseFetchParkingResultData {
|
|
|
2247
2247
|
/**
|
|
2248
2248
|
*
|
|
2249
2249
|
* @export
|
|
2250
|
-
* @interface
|
|
2250
|
+
* @interface WrappedResponseFindMemberResultArray
|
|
2251
2251
|
*/
|
|
2252
|
-
export interface
|
|
2252
|
+
export interface WrappedResponseFindMemberResultArray {
|
|
2253
2253
|
/**
|
|
2254
2254
|
*
|
|
2255
|
-
* @type {
|
|
2256
|
-
* @memberof
|
|
2255
|
+
* @type {WrappedResponseFindMemberResultArrayData}
|
|
2256
|
+
* @memberof WrappedResponseFindMemberResultArray
|
|
2257
2257
|
*/
|
|
2258
|
-
'data':
|
|
2258
|
+
'data': WrappedResponseFindMemberResultArrayData | null;
|
|
2259
2259
|
}
|
|
2260
2260
|
/**
|
|
2261
2261
|
*
|
|
2262
2262
|
* @export
|
|
2263
|
-
* @interface
|
|
2263
|
+
* @interface WrappedResponseFindMemberResultArrayData
|
|
2264
2264
|
*/
|
|
2265
|
-
export interface
|
|
2265
|
+
export interface WrappedResponseFindMemberResultArrayData {
|
|
2266
2266
|
}
|
|
2267
2267
|
/**
|
|
2268
2268
|
*
|
|
@@ -2465,64 +2465,64 @@ export interface WrappedResponseParkingTicketResultArrayData {
|
|
|
2465
2465
|
export interface WrappedResponseParkingTicketResultData {
|
|
2466
2466
|
/**
|
|
2467
2467
|
*
|
|
2468
|
-
* @type {
|
|
2468
|
+
* @type {number}
|
|
2469
2469
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2470
2470
|
*/
|
|
2471
|
-
'
|
|
2471
|
+
'vehicle_type_id': number;
|
|
2472
2472
|
/**
|
|
2473
2473
|
*
|
|
2474
|
-
* @type {
|
|
2474
|
+
* @type {number}
|
|
2475
2475
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2476
2476
|
*/
|
|
2477
|
-
'
|
|
2477
|
+
'member_type_id': number;
|
|
2478
2478
|
/**
|
|
2479
2479
|
*
|
|
2480
|
-
* @type {
|
|
2480
|
+
* @type {RateDetail}
|
|
2481
2481
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2482
2482
|
*/
|
|
2483
|
-
'
|
|
2483
|
+
'rate_detail': RateDetail;
|
|
2484
2484
|
/**
|
|
2485
2485
|
*
|
|
2486
2486
|
* @type {string}
|
|
2487
2487
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2488
2488
|
*/
|
|
2489
|
-
'
|
|
2489
|
+
'parked_at': string;
|
|
2490
2490
|
/**
|
|
2491
2491
|
*
|
|
2492
|
-
* @type {
|
|
2492
|
+
* @type {string}
|
|
2493
2493
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2494
2494
|
*/
|
|
2495
|
-
'
|
|
2495
|
+
'member_id': string;
|
|
2496
2496
|
/**
|
|
2497
2497
|
*
|
|
2498
|
-
* @type {
|
|
2498
|
+
* @type {number}
|
|
2499
2499
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2500
2500
|
*/
|
|
2501
|
-
'
|
|
2501
|
+
'total_fee': number;
|
|
2502
2502
|
/**
|
|
2503
2503
|
*
|
|
2504
2504
|
* @type {string}
|
|
2505
2505
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2506
2506
|
*/
|
|
2507
|
-
'
|
|
2507
|
+
'vehicle_type': string;
|
|
2508
2508
|
/**
|
|
2509
2509
|
*
|
|
2510
|
-
* @type {
|
|
2510
|
+
* @type {string}
|
|
2511
2511
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2512
2512
|
*/
|
|
2513
|
-
'
|
|
2513
|
+
'ticket_number': string;
|
|
2514
2514
|
/**
|
|
2515
2515
|
*
|
|
2516
|
-
* @type {
|
|
2516
|
+
* @type {string}
|
|
2517
2517
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2518
2518
|
*/
|
|
2519
|
-
'
|
|
2519
|
+
'plate_number': string;
|
|
2520
2520
|
/**
|
|
2521
2521
|
*
|
|
2522
|
-
* @type {
|
|
2522
|
+
* @type {string}
|
|
2523
2523
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2524
2524
|
*/
|
|
2525
|
-
'
|
|
2525
|
+
'id': string;
|
|
2526
2526
|
}
|
|
2527
2527
|
/**
|
|
2528
2528
|
*
|
|
@@ -3576,7 +3576,7 @@ export const DefaultApiFp = function(configuration?: Configuration) {
|
|
|
3576
3576
|
* @param {*} [options] Override http request option.
|
|
3577
3577
|
* @throws {RequiredError}
|
|
3578
3578
|
*/
|
|
3579
|
-
async membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
3579
|
+
async membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFindMemberResultArray>> {
|
|
3580
3580
|
const localVarAxiosArgs = await localVarAxiosParamCreator.membersIndex(identifier, accountId, xAccountId, options);
|
|
3581
3581
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
3582
3582
|
},
|
|
@@ -3792,7 +3792,7 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
|
|
|
3792
3792
|
* @param {*} [options] Override http request option.
|
|
3793
3793
|
* @throws {RequiredError}
|
|
3794
3794
|
*/
|
|
3795
|
-
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: any): AxiosPromise<
|
|
3795
|
+
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseFindMemberResultArray> {
|
|
3796
3796
|
return localVarFp.membersIndex(identifier, accountId, xAccountId, options).then((request) => request(axios, basePath));
|
|
3797
3797
|
},
|
|
3798
3798
|
/**
|
package/dist/api/api.d.ts
CHANGED
|
@@ -419,47 +419,47 @@ export interface FetchParkingResult {
|
|
|
419
419
|
export interface FindMemberResult {
|
|
420
420
|
/**
|
|
421
421
|
*
|
|
422
|
-
* @type {
|
|
422
|
+
* @type {FindMemberResultUpdatedAt}
|
|
423
423
|
* @memberof FindMemberResult
|
|
424
424
|
*/
|
|
425
|
-
'
|
|
425
|
+
'updated_at': FindMemberResultUpdatedAt;
|
|
426
426
|
/**
|
|
427
427
|
*
|
|
428
|
-
* @type {
|
|
428
|
+
* @type {FindMemberResultUpdatedAt}
|
|
429
429
|
* @memberof FindMemberResult
|
|
430
430
|
*/
|
|
431
|
-
'
|
|
431
|
+
'created_at': FindMemberResultUpdatedAt;
|
|
432
432
|
/**
|
|
433
433
|
*
|
|
434
|
-
* @type {
|
|
434
|
+
* @type {JsonValue}
|
|
435
435
|
* @memberof FindMemberResult
|
|
436
436
|
*/
|
|
437
|
-
'
|
|
437
|
+
'metadata'?: JsonValue | null;
|
|
438
438
|
/**
|
|
439
439
|
*
|
|
440
|
-
* @type {
|
|
440
|
+
* @type {string}
|
|
441
441
|
* @memberof FindMemberResult
|
|
442
442
|
*/
|
|
443
|
-
'
|
|
443
|
+
'account_id'?: string | null;
|
|
444
444
|
/**
|
|
445
445
|
*
|
|
446
|
-
* @type {
|
|
446
|
+
* @type {string}
|
|
447
447
|
* @memberof FindMemberResult
|
|
448
448
|
*/
|
|
449
|
-
'
|
|
449
|
+
'uid': string;
|
|
450
450
|
/**
|
|
451
451
|
*
|
|
452
|
-
* @type {
|
|
452
|
+
* @type {string}
|
|
453
453
|
* @memberof FindMemberResult
|
|
454
454
|
*/
|
|
455
|
-
'
|
|
455
|
+
'id': string;
|
|
456
456
|
}
|
|
457
457
|
/**
|
|
458
458
|
*
|
|
459
459
|
* @export
|
|
460
|
-
* @interface
|
|
460
|
+
* @interface FindMemberResultUpdatedAt
|
|
461
461
|
*/
|
|
462
|
-
export interface
|
|
462
|
+
export interface FindMemberResultUpdatedAt {
|
|
463
463
|
}
|
|
464
464
|
/**
|
|
465
465
|
*
|
|
@@ -942,16 +942,16 @@ export interface ParkingLotData {
|
|
|
942
942
|
export interface ParkingRedemptionRateResult {
|
|
943
943
|
/**
|
|
944
944
|
*
|
|
945
|
-
* @type {
|
|
945
|
+
* @type {RateDetail}
|
|
946
946
|
* @memberof ParkingRedemptionRateResult
|
|
947
947
|
*/
|
|
948
|
-
'
|
|
948
|
+
'detail': RateDetail;
|
|
949
949
|
/**
|
|
950
950
|
*
|
|
951
|
-
* @type {
|
|
951
|
+
* @type {number}
|
|
952
952
|
* @memberof ParkingRedemptionRateResult
|
|
953
953
|
*/
|
|
954
|
-
'
|
|
954
|
+
'code': number;
|
|
955
955
|
}
|
|
956
956
|
/**
|
|
957
957
|
*
|
|
@@ -961,64 +961,64 @@ export interface ParkingRedemptionRateResult {
|
|
|
961
961
|
export interface ParkingTicketResult {
|
|
962
962
|
/**
|
|
963
963
|
*
|
|
964
|
-
* @type {
|
|
964
|
+
* @type {number}
|
|
965
965
|
* @memberof ParkingTicketResult
|
|
966
966
|
*/
|
|
967
|
-
'
|
|
967
|
+
'vehicle_type_id': number;
|
|
968
968
|
/**
|
|
969
969
|
*
|
|
970
|
-
* @type {
|
|
970
|
+
* @type {number}
|
|
971
971
|
* @memberof ParkingTicketResult
|
|
972
972
|
*/
|
|
973
|
-
'
|
|
973
|
+
'member_type_id': number;
|
|
974
974
|
/**
|
|
975
975
|
*
|
|
976
|
-
* @type {
|
|
976
|
+
* @type {RateDetail}
|
|
977
977
|
* @memberof ParkingTicketResult
|
|
978
978
|
*/
|
|
979
|
-
'
|
|
979
|
+
'rate_detail': RateDetail;
|
|
980
980
|
/**
|
|
981
981
|
*
|
|
982
982
|
* @type {string}
|
|
983
983
|
* @memberof ParkingTicketResult
|
|
984
984
|
*/
|
|
985
|
-
'
|
|
985
|
+
'parked_at': string;
|
|
986
986
|
/**
|
|
987
987
|
*
|
|
988
|
-
* @type {
|
|
988
|
+
* @type {string}
|
|
989
989
|
* @memberof ParkingTicketResult
|
|
990
990
|
*/
|
|
991
|
-
'
|
|
991
|
+
'member_id': string;
|
|
992
992
|
/**
|
|
993
993
|
*
|
|
994
|
-
* @type {
|
|
994
|
+
* @type {number}
|
|
995
995
|
* @memberof ParkingTicketResult
|
|
996
996
|
*/
|
|
997
|
-
'
|
|
997
|
+
'total_fee': number;
|
|
998
998
|
/**
|
|
999
999
|
*
|
|
1000
1000
|
* @type {string}
|
|
1001
1001
|
* @memberof ParkingTicketResult
|
|
1002
1002
|
*/
|
|
1003
|
-
'
|
|
1003
|
+
'vehicle_type': string;
|
|
1004
1004
|
/**
|
|
1005
1005
|
*
|
|
1006
|
-
* @type {
|
|
1006
|
+
* @type {string}
|
|
1007
1007
|
* @memberof ParkingTicketResult
|
|
1008
1008
|
*/
|
|
1009
|
-
'
|
|
1009
|
+
'ticket_number': string;
|
|
1010
1010
|
/**
|
|
1011
1011
|
*
|
|
1012
|
-
* @type {
|
|
1012
|
+
* @type {string}
|
|
1013
1013
|
* @memberof ParkingTicketResult
|
|
1014
1014
|
*/
|
|
1015
|
-
'
|
|
1015
|
+
'plate_number': string;
|
|
1016
1016
|
/**
|
|
1017
1017
|
*
|
|
1018
|
-
* @type {
|
|
1018
|
+
* @type {string}
|
|
1019
1019
|
* @memberof ParkingTicketResult
|
|
1020
1020
|
*/
|
|
1021
|
-
'
|
|
1021
|
+
'id': string;
|
|
1022
1022
|
}
|
|
1023
1023
|
/**
|
|
1024
1024
|
*
|
|
@@ -1868,16 +1868,16 @@ export interface VisitorSchedule {
|
|
|
1868
1868
|
'floor_id': string;
|
|
1869
1869
|
/**
|
|
1870
1870
|
*
|
|
1871
|
-
* @type {
|
|
1871
|
+
* @type {FindMemberResultUpdatedAt}
|
|
1872
1872
|
* @memberof VisitorSchedule
|
|
1873
1873
|
*/
|
|
1874
|
-
'from':
|
|
1874
|
+
'from': FindMemberResultUpdatedAt;
|
|
1875
1875
|
/**
|
|
1876
1876
|
*
|
|
1877
|
-
* @type {
|
|
1877
|
+
* @type {FindMemberResultUpdatedAt}
|
|
1878
1878
|
* @memberof VisitorSchedule
|
|
1879
1879
|
*/
|
|
1880
|
-
'to':
|
|
1880
|
+
'to': FindMemberResultUpdatedAt;
|
|
1881
1881
|
/**
|
|
1882
1882
|
*
|
|
1883
1883
|
* @type {object}
|
|
@@ -2236,22 +2236,22 @@ export interface WrappedResponseFetchParkingResultData {
|
|
|
2236
2236
|
/**
|
|
2237
2237
|
*
|
|
2238
2238
|
* @export
|
|
2239
|
-
* @interface
|
|
2239
|
+
* @interface WrappedResponseFindMemberResultArray
|
|
2240
2240
|
*/
|
|
2241
|
-
export interface
|
|
2241
|
+
export interface WrappedResponseFindMemberResultArray {
|
|
2242
2242
|
/**
|
|
2243
2243
|
*
|
|
2244
|
-
* @type {
|
|
2245
|
-
* @memberof
|
|
2244
|
+
* @type {WrappedResponseFindMemberResultArrayData}
|
|
2245
|
+
* @memberof WrappedResponseFindMemberResultArray
|
|
2246
2246
|
*/
|
|
2247
|
-
'data':
|
|
2247
|
+
'data': WrappedResponseFindMemberResultArrayData | null;
|
|
2248
2248
|
}
|
|
2249
2249
|
/**
|
|
2250
2250
|
*
|
|
2251
2251
|
* @export
|
|
2252
|
-
* @interface
|
|
2252
|
+
* @interface WrappedResponseFindMemberResultArrayData
|
|
2253
2253
|
*/
|
|
2254
|
-
export interface
|
|
2254
|
+
export interface WrappedResponseFindMemberResultArrayData {
|
|
2255
2255
|
}
|
|
2256
2256
|
/**
|
|
2257
2257
|
*
|
|
@@ -2451,64 +2451,64 @@ export interface WrappedResponseParkingTicketResultArrayData {
|
|
|
2451
2451
|
export interface WrappedResponseParkingTicketResultData {
|
|
2452
2452
|
/**
|
|
2453
2453
|
*
|
|
2454
|
-
* @type {
|
|
2454
|
+
* @type {number}
|
|
2455
2455
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2456
2456
|
*/
|
|
2457
|
-
'
|
|
2457
|
+
'vehicle_type_id': number;
|
|
2458
2458
|
/**
|
|
2459
2459
|
*
|
|
2460
|
-
* @type {
|
|
2460
|
+
* @type {number}
|
|
2461
2461
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2462
2462
|
*/
|
|
2463
|
-
'
|
|
2463
|
+
'member_type_id': number;
|
|
2464
2464
|
/**
|
|
2465
2465
|
*
|
|
2466
|
-
* @type {
|
|
2466
|
+
* @type {RateDetail}
|
|
2467
2467
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2468
2468
|
*/
|
|
2469
|
-
'
|
|
2469
|
+
'rate_detail': RateDetail;
|
|
2470
2470
|
/**
|
|
2471
2471
|
*
|
|
2472
2472
|
* @type {string}
|
|
2473
2473
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2474
2474
|
*/
|
|
2475
|
-
'
|
|
2475
|
+
'parked_at': string;
|
|
2476
2476
|
/**
|
|
2477
2477
|
*
|
|
2478
|
-
* @type {
|
|
2478
|
+
* @type {string}
|
|
2479
2479
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2480
2480
|
*/
|
|
2481
|
-
'
|
|
2481
|
+
'member_id': string;
|
|
2482
2482
|
/**
|
|
2483
2483
|
*
|
|
2484
|
-
* @type {
|
|
2484
|
+
* @type {number}
|
|
2485
2485
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2486
2486
|
*/
|
|
2487
|
-
'
|
|
2487
|
+
'total_fee': number;
|
|
2488
2488
|
/**
|
|
2489
2489
|
*
|
|
2490
2490
|
* @type {string}
|
|
2491
2491
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2492
2492
|
*/
|
|
2493
|
-
'
|
|
2493
|
+
'vehicle_type': string;
|
|
2494
2494
|
/**
|
|
2495
2495
|
*
|
|
2496
|
-
* @type {
|
|
2496
|
+
* @type {string}
|
|
2497
2497
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2498
2498
|
*/
|
|
2499
|
-
'
|
|
2499
|
+
'ticket_number': string;
|
|
2500
2500
|
/**
|
|
2501
2501
|
*
|
|
2502
|
-
* @type {
|
|
2502
|
+
* @type {string}
|
|
2503
2503
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2504
2504
|
*/
|
|
2505
|
-
'
|
|
2505
|
+
'plate_number': string;
|
|
2506
2506
|
/**
|
|
2507
2507
|
*
|
|
2508
|
-
* @type {
|
|
2508
|
+
* @type {string}
|
|
2509
2509
|
* @memberof WrappedResponseParkingTicketResultData
|
|
2510
2510
|
*/
|
|
2511
|
-
'
|
|
2511
|
+
'id': string;
|
|
2512
2512
|
}
|
|
2513
2513
|
/**
|
|
2514
2514
|
*
|
|
@@ -2939,7 +2939,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
2939
2939
|
* @param {*} [options] Override http request option.
|
|
2940
2940
|
* @throws {RequiredError}
|
|
2941
2941
|
*/
|
|
2942
|
-
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2942
|
+
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WrappedResponseFindMemberResultArray>>;
|
|
2943
2943
|
/**
|
|
2944
2944
|
*
|
|
2945
2945
|
* @param {string} id
|
|
@@ -3098,7 +3098,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
3098
3098
|
* @param {*} [options] Override http request option.
|
|
3099
3099
|
* @throws {RequiredError}
|
|
3100
3100
|
*/
|
|
3101
|
-
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: any): AxiosPromise<
|
|
3101
|
+
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: any): AxiosPromise<WrappedResponseFindMemberResultArray>;
|
|
3102
3102
|
/**
|
|
3103
3103
|
*
|
|
3104
3104
|
* @param {string} id
|
|
@@ -3267,7 +3267,7 @@ export declare class DefaultApi extends BaseAPI {
|
|
|
3267
3267
|
* @throws {RequiredError}
|
|
3268
3268
|
* @memberof DefaultApi
|
|
3269
3269
|
*/
|
|
3270
|
-
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
3270
|
+
membersIndex(identifier?: string, accountId?: string, xAccountId?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<WrappedResponseFindMemberResultArray, any>>;
|
|
3271
3271
|
/**
|
|
3272
3272
|
*
|
|
3273
3273
|
* @param {string} id
|