ch-admin-api-client-typescript 5.14.3 → 5.14.5
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/lib/api/hospitals-api.d.ts +325 -0
- package/lib/api/hospitals-api.d.ts.map +1 -1
- package/lib/api/hospitals-api.js +485 -0
- package/lib/models/bank-transfer-payment-model.d.ts +43 -0
- package/lib/models/bank-transfer-payment-model.d.ts.map +1 -0
- package/lib/models/bank-transfer-payment-model.js +15 -0
- package/lib/models/create-hospital-payment-method-command.d.ts +58 -0
- package/lib/models/create-hospital-payment-method-command.d.ts.map +1 -0
- package/lib/models/create-hospital-payment-method-command.js +15 -0
- package/lib/models/hospital-payment-method-item-model.d.ts +56 -0
- package/lib/models/hospital-payment-method-item-model.d.ts.map +1 -0
- package/lib/models/hospital-payment-method-item-model.js +15 -0
- package/lib/models/hospital-payment-method-model.d.ts +70 -0
- package/lib/models/hospital-payment-method-model.d.ts.map +1 -0
- package/lib/models/hospital-payment-method-model.js +15 -0
- package/lib/models/hospital-payment-methods-model.d.ts +33 -0
- package/lib/models/hospital-payment-methods-model.d.ts.map +1 -0
- package/lib/models/hospital-payment-methods-model.js +15 -0
- package/lib/models/index.d.ts +7 -0
- package/lib/models/index.d.ts.map +1 -1
- package/lib/models/index.js +7 -0
- package/lib/models/payment-method.d.ts +1 -0
- package/lib/models/payment-method.d.ts.map +1 -1
- package/lib/models/payment-method.js +2 -1
- package/lib/models/update-hospital-payment-method-command.d.ts +58 -0
- package/lib/models/update-hospital-payment-method-command.d.ts.map +1 -0
- package/lib/models/update-hospital-payment-method-command.js +15 -0
- package/lib/models/upi-payment-model.d.ts +31 -0
- package/lib/models/upi-payment-model.d.ts.map +1 -0
- package/lib/models/upi-payment-model.js +15 -0
- package/package.json +1 -1
- package/src/.openapi-generator/FILES +7 -0
- package/src/api/hospitals-api.ts +572 -0
- package/src/models/bank-transfer-payment-model.ts +48 -0
- package/src/models/create-hospital-payment-method-command.ts +69 -0
- package/src/models/hospital-payment-method-item-model.ts +63 -0
- package/src/models/hospital-payment-method-model.ts +81 -0
- package/src/models/hospital-payment-methods-model.ts +42 -0
- package/src/models/index.ts +7 -0
- package/src/models/payment-method.ts +2 -1
- package/src/models/update-hospital-payment-method-command.ts +69 -0
- package/src/models/upi-payment-model.ts +36 -0
package/src/api/hospitals-api.ts
CHANGED
|
@@ -51,6 +51,8 @@ import { CreateHospitalEvaluationCommand } from '../models';
|
|
|
51
51
|
// @ts-ignore
|
|
52
52
|
import { CreateHospitalLanguageCommand } from '../models';
|
|
53
53
|
// @ts-ignore
|
|
54
|
+
import { CreateHospitalPaymentMethodCommand } from '../models';
|
|
55
|
+
// @ts-ignore
|
|
54
56
|
import { CreateHospitalServiceCommand } from '../models';
|
|
55
57
|
// @ts-ignore
|
|
56
58
|
import { CreateHospitalSnsHandleCommand } from '../models';
|
|
@@ -101,6 +103,10 @@ import { HospitalLanguagesModel } from '../models';
|
|
|
101
103
|
// @ts-ignore
|
|
102
104
|
import { HospitalModel } from '../models';
|
|
103
105
|
// @ts-ignore
|
|
106
|
+
import { HospitalPaymentMethodModel } from '../models';
|
|
107
|
+
// @ts-ignore
|
|
108
|
+
import { HospitalPaymentMethodsModel } from '../models';
|
|
109
|
+
// @ts-ignore
|
|
104
110
|
import { HospitalServiceModel } from '../models';
|
|
105
111
|
// @ts-ignore
|
|
106
112
|
import { HospitalServicesModel } from '../models';
|
|
@@ -137,6 +143,8 @@ import { MediaType } from '../models';
|
|
|
137
143
|
// @ts-ignore
|
|
138
144
|
import { MediasModel } from '../models';
|
|
139
145
|
// @ts-ignore
|
|
146
|
+
import { PaymentMethod } from '../models';
|
|
147
|
+
// @ts-ignore
|
|
140
148
|
import { PoliciesModel } from '../models';
|
|
141
149
|
// @ts-ignore
|
|
142
150
|
import { PolicyModel } from '../models';
|
|
@@ -181,6 +189,8 @@ import { UpdateHospitalEquipmentCommand } from '../models';
|
|
|
181
189
|
// @ts-ignore
|
|
182
190
|
import { UpdateHospitalLanguageCommand } from '../models';
|
|
183
191
|
// @ts-ignore
|
|
192
|
+
import { UpdateHospitalPaymentMethodCommand } from '../models';
|
|
193
|
+
// @ts-ignore
|
|
184
194
|
import { UpdateHospitalServiceCommand } from '../models';
|
|
185
195
|
// @ts-ignore
|
|
186
196
|
import { UpdateHospitalSnsHandleCommand } from '../models';
|
|
@@ -3677,6 +3687,243 @@ export const HospitalsApiAxiosParamCreator = function (configuration?: Configura
|
|
|
3677
3687
|
options: localVarRequestOptions,
|
|
3678
3688
|
};
|
|
3679
3689
|
},
|
|
3690
|
+
/**
|
|
3691
|
+
*
|
|
3692
|
+
* @summary Get hospitalPaymentMethods list
|
|
3693
|
+
* @param {string} hospitalId
|
|
3694
|
+
* @param {PaymentMethod} [paymentMethod]
|
|
3695
|
+
* @param {string} [id]
|
|
3696
|
+
* @param {number} [page]
|
|
3697
|
+
* @param {number} [limit]
|
|
3698
|
+
* @param {Date} [lastRetrieved]
|
|
3699
|
+
* @param {*} [options] Override http request option.
|
|
3700
|
+
* @throws {RequiredError}
|
|
3701
|
+
*/
|
|
3702
|
+
apiV1HospitalsHospitalIdPaymentmethodsGet: async (hospitalId: string, paymentMethod?: PaymentMethod, id?: string, page?: number, limit?: number, lastRetrieved?: Date, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3703
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3704
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsGet', 'hospitalId', hospitalId)
|
|
3705
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/paymentmethods`
|
|
3706
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3707
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3708
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3709
|
+
let baseOptions;
|
|
3710
|
+
if (configuration) {
|
|
3711
|
+
baseOptions = configuration.baseOptions;
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3715
|
+
const localVarHeaderParameter = {} as any;
|
|
3716
|
+
const localVarQueryParameter = {} as any;
|
|
3717
|
+
|
|
3718
|
+
// authentication oauth2 required
|
|
3719
|
+
// oauth required
|
|
3720
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3721
|
+
|
|
3722
|
+
if (paymentMethod !== undefined) {
|
|
3723
|
+
localVarQueryParameter['PaymentMethod'] = paymentMethod;
|
|
3724
|
+
}
|
|
3725
|
+
|
|
3726
|
+
if (id !== undefined) {
|
|
3727
|
+
localVarQueryParameter['Id'] = id;
|
|
3728
|
+
}
|
|
3729
|
+
|
|
3730
|
+
if (page !== undefined) {
|
|
3731
|
+
localVarQueryParameter['page'] = page;
|
|
3732
|
+
}
|
|
3733
|
+
|
|
3734
|
+
if (limit !== undefined) {
|
|
3735
|
+
localVarQueryParameter['limit'] = limit;
|
|
3736
|
+
}
|
|
3737
|
+
|
|
3738
|
+
if (lastRetrieved !== undefined) {
|
|
3739
|
+
localVarQueryParameter['lastRetrieved'] = (lastRetrieved as any instanceof Date) ?
|
|
3740
|
+
(lastRetrieved as any).toISOString() :
|
|
3741
|
+
lastRetrieved;
|
|
3742
|
+
}
|
|
3743
|
+
|
|
3744
|
+
|
|
3745
|
+
|
|
3746
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3747
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3748
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3749
|
+
|
|
3750
|
+
return {
|
|
3751
|
+
url: toPathString(localVarUrlObj),
|
|
3752
|
+
options: localVarRequestOptions,
|
|
3753
|
+
};
|
|
3754
|
+
},
|
|
3755
|
+
/**
|
|
3756
|
+
*
|
|
3757
|
+
* @summary Delete hospitalPaymentMethod
|
|
3758
|
+
* @param {string} hospitalId
|
|
3759
|
+
* @param {string} id
|
|
3760
|
+
* @param {*} [options] Override http request option.
|
|
3761
|
+
* @throws {RequiredError}
|
|
3762
|
+
*/
|
|
3763
|
+
apiV1HospitalsHospitalIdPaymentmethodsIdDelete: async (hospitalId: string, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3764
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3765
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsIdDelete', 'hospitalId', hospitalId)
|
|
3766
|
+
// verify required parameter 'id' is not null or undefined
|
|
3767
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsIdDelete', 'id', id)
|
|
3768
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/paymentmethods/{id}`
|
|
3769
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3770
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
3771
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3772
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3773
|
+
let baseOptions;
|
|
3774
|
+
if (configuration) {
|
|
3775
|
+
baseOptions = configuration.baseOptions;
|
|
3776
|
+
}
|
|
3777
|
+
|
|
3778
|
+
const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options};
|
|
3779
|
+
const localVarHeaderParameter = {} as any;
|
|
3780
|
+
const localVarQueryParameter = {} as any;
|
|
3781
|
+
|
|
3782
|
+
// authentication oauth2 required
|
|
3783
|
+
// oauth required
|
|
3784
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3785
|
+
|
|
3786
|
+
|
|
3787
|
+
|
|
3788
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3789
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3790
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3791
|
+
|
|
3792
|
+
return {
|
|
3793
|
+
url: toPathString(localVarUrlObj),
|
|
3794
|
+
options: localVarRequestOptions,
|
|
3795
|
+
};
|
|
3796
|
+
},
|
|
3797
|
+
/**
|
|
3798
|
+
*
|
|
3799
|
+
* @summary Get hospitalPaymentMethod
|
|
3800
|
+
* @param {string} hospitalId
|
|
3801
|
+
* @param {string} id
|
|
3802
|
+
* @param {*} [options] Override http request option.
|
|
3803
|
+
* @throws {RequiredError}
|
|
3804
|
+
*/
|
|
3805
|
+
apiV1HospitalsHospitalIdPaymentmethodsIdGet: async (hospitalId: string, id: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3806
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3807
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsIdGet', 'hospitalId', hospitalId)
|
|
3808
|
+
// verify required parameter 'id' is not null or undefined
|
|
3809
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsIdGet', 'id', id)
|
|
3810
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/paymentmethods/{id}`
|
|
3811
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3812
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
3813
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3814
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3815
|
+
let baseOptions;
|
|
3816
|
+
if (configuration) {
|
|
3817
|
+
baseOptions = configuration.baseOptions;
|
|
3818
|
+
}
|
|
3819
|
+
|
|
3820
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
3821
|
+
const localVarHeaderParameter = {} as any;
|
|
3822
|
+
const localVarQueryParameter = {} as any;
|
|
3823
|
+
|
|
3824
|
+
// authentication oauth2 required
|
|
3825
|
+
// oauth required
|
|
3826
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3827
|
+
|
|
3828
|
+
|
|
3829
|
+
|
|
3830
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3831
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3832
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3833
|
+
|
|
3834
|
+
return {
|
|
3835
|
+
url: toPathString(localVarUrlObj),
|
|
3836
|
+
options: localVarRequestOptions,
|
|
3837
|
+
};
|
|
3838
|
+
},
|
|
3839
|
+
/**
|
|
3840
|
+
*
|
|
3841
|
+
* @summary Update hospitalPaymentMethod
|
|
3842
|
+
* @param {string} hospitalId
|
|
3843
|
+
* @param {string} id
|
|
3844
|
+
* @param {UpdateHospitalPaymentMethodCommand} [updateHospitalPaymentMethodCommand]
|
|
3845
|
+
* @param {*} [options] Override http request option.
|
|
3846
|
+
* @throws {RequiredError}
|
|
3847
|
+
*/
|
|
3848
|
+
apiV1HospitalsHospitalIdPaymentmethodsIdPut: async (hospitalId: string, id: string, updateHospitalPaymentMethodCommand?: UpdateHospitalPaymentMethodCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3849
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3850
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsIdPut', 'hospitalId', hospitalId)
|
|
3851
|
+
// verify required parameter 'id' is not null or undefined
|
|
3852
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsIdPut', 'id', id)
|
|
3853
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/paymentmethods/{id}`
|
|
3854
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)))
|
|
3855
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
3856
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3857
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3858
|
+
let baseOptions;
|
|
3859
|
+
if (configuration) {
|
|
3860
|
+
baseOptions = configuration.baseOptions;
|
|
3861
|
+
}
|
|
3862
|
+
|
|
3863
|
+
const localVarRequestOptions = { method: 'PUT', ...baseOptions, ...options};
|
|
3864
|
+
const localVarHeaderParameter = {} as any;
|
|
3865
|
+
const localVarQueryParameter = {} as any;
|
|
3866
|
+
|
|
3867
|
+
// authentication oauth2 required
|
|
3868
|
+
// oauth required
|
|
3869
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3870
|
+
|
|
3871
|
+
|
|
3872
|
+
|
|
3873
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3874
|
+
|
|
3875
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3876
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3877
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3878
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateHospitalPaymentMethodCommand, localVarRequestOptions, configuration)
|
|
3879
|
+
|
|
3880
|
+
return {
|
|
3881
|
+
url: toPathString(localVarUrlObj),
|
|
3882
|
+
options: localVarRequestOptions,
|
|
3883
|
+
};
|
|
3884
|
+
},
|
|
3885
|
+
/**
|
|
3886
|
+
*
|
|
3887
|
+
* @summary Create hospitalPaymentMethod
|
|
3888
|
+
* @param {string} hospitalId
|
|
3889
|
+
* @param {CreateHospitalPaymentMethodCommand} [createHospitalPaymentMethodCommand]
|
|
3890
|
+
* @param {*} [options] Override http request option.
|
|
3891
|
+
* @throws {RequiredError}
|
|
3892
|
+
*/
|
|
3893
|
+
apiV1HospitalsHospitalIdPaymentmethodsPost: async (hospitalId: string, createHospitalPaymentMethodCommand?: CreateHospitalPaymentMethodCommand, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
3894
|
+
// verify required parameter 'hospitalId' is not null or undefined
|
|
3895
|
+
assertParamExists('apiV1HospitalsHospitalIdPaymentmethodsPost', 'hospitalId', hospitalId)
|
|
3896
|
+
const localVarPath = `/api/v1/hospitals/{hospitalId}/paymentmethods`
|
|
3897
|
+
.replace(`{${"hospitalId"}}`, encodeURIComponent(String(hospitalId)));
|
|
3898
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
3899
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
3900
|
+
let baseOptions;
|
|
3901
|
+
if (configuration) {
|
|
3902
|
+
baseOptions = configuration.baseOptions;
|
|
3903
|
+
}
|
|
3904
|
+
|
|
3905
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
3906
|
+
const localVarHeaderParameter = {} as any;
|
|
3907
|
+
const localVarQueryParameter = {} as any;
|
|
3908
|
+
|
|
3909
|
+
// authentication oauth2 required
|
|
3910
|
+
// oauth required
|
|
3911
|
+
await setOAuthToObject(localVarHeaderParameter, "oauth2", ["CloudHospital_admin_api", "IdentityServerApi"], configuration)
|
|
3912
|
+
|
|
3913
|
+
|
|
3914
|
+
|
|
3915
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
3916
|
+
|
|
3917
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
3918
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
3919
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
3920
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createHospitalPaymentMethodCommand, localVarRequestOptions, configuration)
|
|
3921
|
+
|
|
3922
|
+
return {
|
|
3923
|
+
url: toPathString(localVarUrlObj),
|
|
3924
|
+
options: localVarRequestOptions,
|
|
3925
|
+
};
|
|
3926
|
+
},
|
|
3680
3927
|
/**
|
|
3681
3928
|
*
|
|
3682
3929
|
* @summary Get all policies
|
|
@@ -8376,6 +8623,71 @@ export const HospitalsApiFp = function(configuration?: Configuration) {
|
|
|
8376
8623
|
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdMediasPost(hospitalId, createMediaCommand, options);
|
|
8377
8624
|
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8378
8625
|
},
|
|
8626
|
+
/**
|
|
8627
|
+
*
|
|
8628
|
+
* @summary Get hospitalPaymentMethods list
|
|
8629
|
+
* @param {string} hospitalId
|
|
8630
|
+
* @param {PaymentMethod} [paymentMethod]
|
|
8631
|
+
* @param {string} [id]
|
|
8632
|
+
* @param {number} [page]
|
|
8633
|
+
* @param {number} [limit]
|
|
8634
|
+
* @param {Date} [lastRetrieved]
|
|
8635
|
+
* @param {*} [options] Override http request option.
|
|
8636
|
+
* @throws {RequiredError}
|
|
8637
|
+
*/
|
|
8638
|
+
async apiV1HospitalsHospitalIdPaymentmethodsGet(hospitalId: string, paymentMethod?: PaymentMethod, id?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalPaymentMethodsModel>> {
|
|
8639
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPaymentmethodsGet(hospitalId, paymentMethod, id, page, limit, lastRetrieved, options);
|
|
8640
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8641
|
+
},
|
|
8642
|
+
/**
|
|
8643
|
+
*
|
|
8644
|
+
* @summary Delete hospitalPaymentMethod
|
|
8645
|
+
* @param {string} hospitalId
|
|
8646
|
+
* @param {string} id
|
|
8647
|
+
* @param {*} [options] Override http request option.
|
|
8648
|
+
* @throws {RequiredError}
|
|
8649
|
+
*/
|
|
8650
|
+
async apiV1HospitalsHospitalIdPaymentmethodsIdDelete(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>> {
|
|
8651
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPaymentmethodsIdDelete(hospitalId, id, options);
|
|
8652
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8653
|
+
},
|
|
8654
|
+
/**
|
|
8655
|
+
*
|
|
8656
|
+
* @summary Get hospitalPaymentMethod
|
|
8657
|
+
* @param {string} hospitalId
|
|
8658
|
+
* @param {string} id
|
|
8659
|
+
* @param {*} [options] Override http request option.
|
|
8660
|
+
* @throws {RequiredError}
|
|
8661
|
+
*/
|
|
8662
|
+
async apiV1HospitalsHospitalIdPaymentmethodsIdGet(hospitalId: string, id: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalPaymentMethodModel>> {
|
|
8663
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPaymentmethodsIdGet(hospitalId, id, options);
|
|
8664
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8665
|
+
},
|
|
8666
|
+
/**
|
|
8667
|
+
*
|
|
8668
|
+
* @summary Update hospitalPaymentMethod
|
|
8669
|
+
* @param {string} hospitalId
|
|
8670
|
+
* @param {string} id
|
|
8671
|
+
* @param {UpdateHospitalPaymentMethodCommand} [updateHospitalPaymentMethodCommand]
|
|
8672
|
+
* @param {*} [options] Override http request option.
|
|
8673
|
+
* @throws {RequiredError}
|
|
8674
|
+
*/
|
|
8675
|
+
async apiV1HospitalsHospitalIdPaymentmethodsIdPut(hospitalId: string, id: string, updateHospitalPaymentMethodCommand?: UpdateHospitalPaymentMethodCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalPaymentMethodModel>> {
|
|
8676
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPaymentmethodsIdPut(hospitalId, id, updateHospitalPaymentMethodCommand, options);
|
|
8677
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8678
|
+
},
|
|
8679
|
+
/**
|
|
8680
|
+
*
|
|
8681
|
+
* @summary Create hospitalPaymentMethod
|
|
8682
|
+
* @param {string} hospitalId
|
|
8683
|
+
* @param {CreateHospitalPaymentMethodCommand} [createHospitalPaymentMethodCommand]
|
|
8684
|
+
* @param {*} [options] Override http request option.
|
|
8685
|
+
* @throws {RequiredError}
|
|
8686
|
+
*/
|
|
8687
|
+
async apiV1HospitalsHospitalIdPaymentmethodsPost(hospitalId: string, createHospitalPaymentMethodCommand?: CreateHospitalPaymentMethodCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HospitalPaymentMethodModel>> {
|
|
8688
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.apiV1HospitalsHospitalIdPaymentmethodsPost(hospitalId, createHospitalPaymentMethodCommand, options);
|
|
8689
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
8690
|
+
},
|
|
8379
8691
|
/**
|
|
8380
8692
|
*
|
|
8381
8693
|
* @summary Get all policies
|
|
@@ -10251,6 +10563,66 @@ export const HospitalsApiFactory = function (configuration?: Configuration, base
|
|
|
10251
10563
|
apiV1HospitalsHospitalIdMediasPost(hospitalId: string, createMediaCommand?: CreateMediaCommand, options?: any): AxiosPromise<MediaModel> {
|
|
10252
10564
|
return localVarFp.apiV1HospitalsHospitalIdMediasPost(hospitalId, createMediaCommand, options).then((request) => request(axios, basePath));
|
|
10253
10565
|
},
|
|
10566
|
+
/**
|
|
10567
|
+
*
|
|
10568
|
+
* @summary Get hospitalPaymentMethods list
|
|
10569
|
+
* @param {string} hospitalId
|
|
10570
|
+
* @param {PaymentMethod} [paymentMethod]
|
|
10571
|
+
* @param {string} [id]
|
|
10572
|
+
* @param {number} [page]
|
|
10573
|
+
* @param {number} [limit]
|
|
10574
|
+
* @param {Date} [lastRetrieved]
|
|
10575
|
+
* @param {*} [options] Override http request option.
|
|
10576
|
+
* @throws {RequiredError}
|
|
10577
|
+
*/
|
|
10578
|
+
apiV1HospitalsHospitalIdPaymentmethodsGet(hospitalId: string, paymentMethod?: PaymentMethod, id?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<HospitalPaymentMethodsModel> {
|
|
10579
|
+
return localVarFp.apiV1HospitalsHospitalIdPaymentmethodsGet(hospitalId, paymentMethod, id, page, limit, lastRetrieved, options).then((request) => request(axios, basePath));
|
|
10580
|
+
},
|
|
10581
|
+
/**
|
|
10582
|
+
*
|
|
10583
|
+
* @summary Delete hospitalPaymentMethod
|
|
10584
|
+
* @param {string} hospitalId
|
|
10585
|
+
* @param {string} id
|
|
10586
|
+
* @param {*} [options] Override http request option.
|
|
10587
|
+
* @throws {RequiredError}
|
|
10588
|
+
*/
|
|
10589
|
+
apiV1HospitalsHospitalIdPaymentmethodsIdDelete(hospitalId: string, id: string, options?: any): AxiosPromise<boolean> {
|
|
10590
|
+
return localVarFp.apiV1HospitalsHospitalIdPaymentmethodsIdDelete(hospitalId, id, options).then((request) => request(axios, basePath));
|
|
10591
|
+
},
|
|
10592
|
+
/**
|
|
10593
|
+
*
|
|
10594
|
+
* @summary Get hospitalPaymentMethod
|
|
10595
|
+
* @param {string} hospitalId
|
|
10596
|
+
* @param {string} id
|
|
10597
|
+
* @param {*} [options] Override http request option.
|
|
10598
|
+
* @throws {RequiredError}
|
|
10599
|
+
*/
|
|
10600
|
+
apiV1HospitalsHospitalIdPaymentmethodsIdGet(hospitalId: string, id: string, options?: any): AxiosPromise<HospitalPaymentMethodModel> {
|
|
10601
|
+
return localVarFp.apiV1HospitalsHospitalIdPaymentmethodsIdGet(hospitalId, id, options).then((request) => request(axios, basePath));
|
|
10602
|
+
},
|
|
10603
|
+
/**
|
|
10604
|
+
*
|
|
10605
|
+
* @summary Update hospitalPaymentMethod
|
|
10606
|
+
* @param {string} hospitalId
|
|
10607
|
+
* @param {string} id
|
|
10608
|
+
* @param {UpdateHospitalPaymentMethodCommand} [updateHospitalPaymentMethodCommand]
|
|
10609
|
+
* @param {*} [options] Override http request option.
|
|
10610
|
+
* @throws {RequiredError}
|
|
10611
|
+
*/
|
|
10612
|
+
apiV1HospitalsHospitalIdPaymentmethodsIdPut(hospitalId: string, id: string, updateHospitalPaymentMethodCommand?: UpdateHospitalPaymentMethodCommand, options?: any): AxiosPromise<HospitalPaymentMethodModel> {
|
|
10613
|
+
return localVarFp.apiV1HospitalsHospitalIdPaymentmethodsIdPut(hospitalId, id, updateHospitalPaymentMethodCommand, options).then((request) => request(axios, basePath));
|
|
10614
|
+
},
|
|
10615
|
+
/**
|
|
10616
|
+
*
|
|
10617
|
+
* @summary Create hospitalPaymentMethod
|
|
10618
|
+
* @param {string} hospitalId
|
|
10619
|
+
* @param {CreateHospitalPaymentMethodCommand} [createHospitalPaymentMethodCommand]
|
|
10620
|
+
* @param {*} [options] Override http request option.
|
|
10621
|
+
* @throws {RequiredError}
|
|
10622
|
+
*/
|
|
10623
|
+
apiV1HospitalsHospitalIdPaymentmethodsPost(hospitalId: string, createHospitalPaymentMethodCommand?: CreateHospitalPaymentMethodCommand, options?: any): AxiosPromise<HospitalPaymentMethodModel> {
|
|
10624
|
+
return localVarFp.apiV1HospitalsHospitalIdPaymentmethodsPost(hospitalId, createHospitalPaymentMethodCommand, options).then((request) => request(axios, basePath));
|
|
10625
|
+
},
|
|
10254
10626
|
/**
|
|
10255
10627
|
*
|
|
10256
10628
|
* @summary Get all policies
|
|
@@ -13381,6 +13753,146 @@ export interface HospitalsApiApiV1HospitalsHospitalIdMediasPostRequest {
|
|
|
13381
13753
|
readonly createMediaCommand?: CreateMediaCommand
|
|
13382
13754
|
}
|
|
13383
13755
|
|
|
13756
|
+
/**
|
|
13757
|
+
* Request parameters for apiV1HospitalsHospitalIdPaymentmethodsGet operation in HospitalsApi.
|
|
13758
|
+
* @export
|
|
13759
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest
|
|
13760
|
+
*/
|
|
13761
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest {
|
|
13762
|
+
/**
|
|
13763
|
+
*
|
|
13764
|
+
* @type {string}
|
|
13765
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
13766
|
+
*/
|
|
13767
|
+
readonly hospitalId: string
|
|
13768
|
+
|
|
13769
|
+
/**
|
|
13770
|
+
*
|
|
13771
|
+
* @type {PaymentMethod}
|
|
13772
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
13773
|
+
*/
|
|
13774
|
+
readonly paymentMethod?: PaymentMethod
|
|
13775
|
+
|
|
13776
|
+
/**
|
|
13777
|
+
*
|
|
13778
|
+
* @type {string}
|
|
13779
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
13780
|
+
*/
|
|
13781
|
+
readonly id?: string
|
|
13782
|
+
|
|
13783
|
+
/**
|
|
13784
|
+
*
|
|
13785
|
+
* @type {number}
|
|
13786
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
13787
|
+
*/
|
|
13788
|
+
readonly page?: number
|
|
13789
|
+
|
|
13790
|
+
/**
|
|
13791
|
+
*
|
|
13792
|
+
* @type {number}
|
|
13793
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
13794
|
+
*/
|
|
13795
|
+
readonly limit?: number
|
|
13796
|
+
|
|
13797
|
+
/**
|
|
13798
|
+
*
|
|
13799
|
+
* @type {Date}
|
|
13800
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGet
|
|
13801
|
+
*/
|
|
13802
|
+
readonly lastRetrieved?: Date
|
|
13803
|
+
}
|
|
13804
|
+
|
|
13805
|
+
/**
|
|
13806
|
+
* Request parameters for apiV1HospitalsHospitalIdPaymentmethodsIdDelete operation in HospitalsApi.
|
|
13807
|
+
* @export
|
|
13808
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDeleteRequest
|
|
13809
|
+
*/
|
|
13810
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDeleteRequest {
|
|
13811
|
+
/**
|
|
13812
|
+
*
|
|
13813
|
+
* @type {string}
|
|
13814
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDelete
|
|
13815
|
+
*/
|
|
13816
|
+
readonly hospitalId: string
|
|
13817
|
+
|
|
13818
|
+
/**
|
|
13819
|
+
*
|
|
13820
|
+
* @type {string}
|
|
13821
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDelete
|
|
13822
|
+
*/
|
|
13823
|
+
readonly id: string
|
|
13824
|
+
}
|
|
13825
|
+
|
|
13826
|
+
/**
|
|
13827
|
+
* Request parameters for apiV1HospitalsHospitalIdPaymentmethodsIdGet operation in HospitalsApi.
|
|
13828
|
+
* @export
|
|
13829
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGetRequest
|
|
13830
|
+
*/
|
|
13831
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGetRequest {
|
|
13832
|
+
/**
|
|
13833
|
+
*
|
|
13834
|
+
* @type {string}
|
|
13835
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGet
|
|
13836
|
+
*/
|
|
13837
|
+
readonly hospitalId: string
|
|
13838
|
+
|
|
13839
|
+
/**
|
|
13840
|
+
*
|
|
13841
|
+
* @type {string}
|
|
13842
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGet
|
|
13843
|
+
*/
|
|
13844
|
+
readonly id: string
|
|
13845
|
+
}
|
|
13846
|
+
|
|
13847
|
+
/**
|
|
13848
|
+
* Request parameters for apiV1HospitalsHospitalIdPaymentmethodsIdPut operation in HospitalsApi.
|
|
13849
|
+
* @export
|
|
13850
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPutRequest
|
|
13851
|
+
*/
|
|
13852
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPutRequest {
|
|
13853
|
+
/**
|
|
13854
|
+
*
|
|
13855
|
+
* @type {string}
|
|
13856
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPut
|
|
13857
|
+
*/
|
|
13858
|
+
readonly hospitalId: string
|
|
13859
|
+
|
|
13860
|
+
/**
|
|
13861
|
+
*
|
|
13862
|
+
* @type {string}
|
|
13863
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPut
|
|
13864
|
+
*/
|
|
13865
|
+
readonly id: string
|
|
13866
|
+
|
|
13867
|
+
/**
|
|
13868
|
+
*
|
|
13869
|
+
* @type {UpdateHospitalPaymentMethodCommand}
|
|
13870
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPut
|
|
13871
|
+
*/
|
|
13872
|
+
readonly updateHospitalPaymentMethodCommand?: UpdateHospitalPaymentMethodCommand
|
|
13873
|
+
}
|
|
13874
|
+
|
|
13875
|
+
/**
|
|
13876
|
+
* Request parameters for apiV1HospitalsHospitalIdPaymentmethodsPost operation in HospitalsApi.
|
|
13877
|
+
* @export
|
|
13878
|
+
* @interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsPostRequest
|
|
13879
|
+
*/
|
|
13880
|
+
export interface HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsPostRequest {
|
|
13881
|
+
/**
|
|
13882
|
+
*
|
|
13883
|
+
* @type {string}
|
|
13884
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsPost
|
|
13885
|
+
*/
|
|
13886
|
+
readonly hospitalId: string
|
|
13887
|
+
|
|
13888
|
+
/**
|
|
13889
|
+
*
|
|
13890
|
+
* @type {CreateHospitalPaymentMethodCommand}
|
|
13891
|
+
* @memberof HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsPost
|
|
13892
|
+
*/
|
|
13893
|
+
readonly createHospitalPaymentMethodCommand?: CreateHospitalPaymentMethodCommand
|
|
13894
|
+
}
|
|
13895
|
+
|
|
13384
13896
|
/**
|
|
13385
13897
|
* Request parameters for apiV1HospitalsHospitalIdPoliciesGet operation in HospitalsApi.
|
|
13386
13898
|
* @export
|
|
@@ -16799,6 +17311,66 @@ export class HospitalsApi extends BaseAPI {
|
|
|
16799
17311
|
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdMediasPost(requestParameters.hospitalId, requestParameters.createMediaCommand, options).then((request) => request(this.axios, this.basePath));
|
|
16800
17312
|
}
|
|
16801
17313
|
|
|
17314
|
+
/**
|
|
17315
|
+
*
|
|
17316
|
+
* @summary Get hospitalPaymentMethods list
|
|
17317
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest} requestParameters Request parameters.
|
|
17318
|
+
* @param {*} [options] Override http request option.
|
|
17319
|
+
* @throws {RequiredError}
|
|
17320
|
+
* @memberof HospitalsApi
|
|
17321
|
+
*/
|
|
17322
|
+
public apiV1HospitalsHospitalIdPaymentmethodsGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsGetRequest, options?: AxiosRequestConfig) {
|
|
17323
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPaymentmethodsGet(requestParameters.hospitalId, requestParameters.paymentMethod, requestParameters.id, requestParameters.page, requestParameters.limit, requestParameters.lastRetrieved, options).then((request) => request(this.axios, this.basePath));
|
|
17324
|
+
}
|
|
17325
|
+
|
|
17326
|
+
/**
|
|
17327
|
+
*
|
|
17328
|
+
* @summary Delete hospitalPaymentMethod
|
|
17329
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDeleteRequest} requestParameters Request parameters.
|
|
17330
|
+
* @param {*} [options] Override http request option.
|
|
17331
|
+
* @throws {RequiredError}
|
|
17332
|
+
* @memberof HospitalsApi
|
|
17333
|
+
*/
|
|
17334
|
+
public apiV1HospitalsHospitalIdPaymentmethodsIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdDeleteRequest, options?: AxiosRequestConfig) {
|
|
17335
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPaymentmethodsIdDelete(requestParameters.hospitalId, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
17336
|
+
}
|
|
17337
|
+
|
|
17338
|
+
/**
|
|
17339
|
+
*
|
|
17340
|
+
* @summary Get hospitalPaymentMethod
|
|
17341
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGetRequest} requestParameters Request parameters.
|
|
17342
|
+
* @param {*} [options] Override http request option.
|
|
17343
|
+
* @throws {RequiredError}
|
|
17344
|
+
* @memberof HospitalsApi
|
|
17345
|
+
*/
|
|
17346
|
+
public apiV1HospitalsHospitalIdPaymentmethodsIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdGetRequest, options?: AxiosRequestConfig) {
|
|
17347
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPaymentmethodsIdGet(requestParameters.hospitalId, requestParameters.id, options).then((request) => request(this.axios, this.basePath));
|
|
17348
|
+
}
|
|
17349
|
+
|
|
17350
|
+
/**
|
|
17351
|
+
*
|
|
17352
|
+
* @summary Update hospitalPaymentMethod
|
|
17353
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPutRequest} requestParameters Request parameters.
|
|
17354
|
+
* @param {*} [options] Override http request option.
|
|
17355
|
+
* @throws {RequiredError}
|
|
17356
|
+
* @memberof HospitalsApi
|
|
17357
|
+
*/
|
|
17358
|
+
public apiV1HospitalsHospitalIdPaymentmethodsIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsIdPutRequest, options?: AxiosRequestConfig) {
|
|
17359
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPaymentmethodsIdPut(requestParameters.hospitalId, requestParameters.id, requestParameters.updateHospitalPaymentMethodCommand, options).then((request) => request(this.axios, this.basePath));
|
|
17360
|
+
}
|
|
17361
|
+
|
|
17362
|
+
/**
|
|
17363
|
+
*
|
|
17364
|
+
* @summary Create hospitalPaymentMethod
|
|
17365
|
+
* @param {HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsPostRequest} requestParameters Request parameters.
|
|
17366
|
+
* @param {*} [options] Override http request option.
|
|
17367
|
+
* @throws {RequiredError}
|
|
17368
|
+
* @memberof HospitalsApi
|
|
17369
|
+
*/
|
|
17370
|
+
public apiV1HospitalsHospitalIdPaymentmethodsPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdPaymentmethodsPostRequest, options?: AxiosRequestConfig) {
|
|
17371
|
+
return HospitalsApiFp(this.configuration).apiV1HospitalsHospitalIdPaymentmethodsPost(requestParameters.hospitalId, requestParameters.createHospitalPaymentMethodCommand, options).then((request) => request(this.axios, this.basePath));
|
|
17372
|
+
}
|
|
17373
|
+
|
|
16802
17374
|
/**
|
|
16803
17375
|
*
|
|
16804
17376
|
* @summary Get all policies
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger UI - Cloud Hospital Admin Api-INT
|
|
5
|
+
* Cloud Hospital application with Swagger, Swashbuckle, and API versioning.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1
|
|
8
|
+
* Contact: hyounoosung@icloudhospital.com
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
*
|
|
19
|
+
* @export
|
|
20
|
+
* @interface BankTransferPaymentModel
|
|
21
|
+
*/
|
|
22
|
+
export interface BankTransferPaymentModel {
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof BankTransferPaymentModel
|
|
27
|
+
*/
|
|
28
|
+
'bank'?: string | null;
|
|
29
|
+
/**
|
|
30
|
+
*
|
|
31
|
+
* @type {string}
|
|
32
|
+
* @memberof BankTransferPaymentModel
|
|
33
|
+
*/
|
|
34
|
+
'accountNumber'?: string | null;
|
|
35
|
+
/**
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof BankTransferPaymentModel
|
|
39
|
+
*/
|
|
40
|
+
'depositor'?: string | null;
|
|
41
|
+
/**
|
|
42
|
+
*
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @memberof BankTransferPaymentModel
|
|
45
|
+
*/
|
|
46
|
+
'swiftCode'?: string | null;
|
|
47
|
+
}
|
|
48
|
+
|