ch-admin-api-client-typescript 5.6.0 → 5.6.3

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.
Files changed (49) hide show
  1. package/lib/api/hospitals-api.d.ts +324 -0
  2. package/lib/api/hospitals-api.d.ts.map +1 -1
  3. package/lib/api/hospitals-api.js +485 -0
  4. package/lib/models/appointment-option-model.d.ts +7 -1
  5. package/lib/models/appointment-option-model.d.ts.map +1 -1
  6. package/lib/models/bank-account-info-item-model.d.ts +73 -0
  7. package/lib/models/bank-account-info-item-model.d.ts.map +1 -0
  8. package/lib/models/bank-account-info-item-model.js +15 -0
  9. package/lib/models/bank-account-info-model.d.ts +73 -0
  10. package/lib/models/bank-account-info-model.d.ts.map +1 -0
  11. package/lib/models/bank-account-info-model.js +15 -0
  12. package/lib/models/bank-account-infos-model.d.ts +33 -0
  13. package/lib/models/bank-account-infos-model.d.ts.map +1 -0
  14. package/lib/models/bank-account-infos-model.js +15 -0
  15. package/lib/models/create-hospital-bank-account-info-command.d.ts +61 -0
  16. package/lib/models/create-hospital-bank-account-info-command.d.ts.map +1 -0
  17. package/lib/models/create-hospital-bank-account-info-command.js +15 -0
  18. package/lib/models/create-hospital-command.d.ts +13 -0
  19. package/lib/models/create-hospital-command.d.ts.map +1 -1
  20. package/lib/models/hospital-item-model.d.ts +13 -0
  21. package/lib/models/hospital-item-model.d.ts.map +1 -1
  22. package/lib/models/hospital-model.d.ts +13 -0
  23. package/lib/models/hospital-model.d.ts.map +1 -1
  24. package/lib/models/index.d.ts +6 -0
  25. package/lib/models/index.d.ts.map +1 -1
  26. package/lib/models/index.js +6 -0
  27. package/lib/models/payment-method.d.ts +23 -0
  28. package/lib/models/payment-method.d.ts.map +1 -0
  29. package/lib/models/payment-method.js +26 -0
  30. package/lib/models/update-hospital-bank-account-info-command.d.ts +61 -0
  31. package/lib/models/update-hospital-bank-account-info-command.d.ts.map +1 -0
  32. package/lib/models/update-hospital-bank-account-info-command.js +15 -0
  33. package/lib/models/update-hospital-command.d.ts +13 -0
  34. package/lib/models/update-hospital-command.d.ts.map +1 -1
  35. package/package.json +1 -1
  36. package/src/.openapi-generator/FILES +6 -0
  37. package/src/api/hospitals-api.ts +570 -0
  38. package/src/models/appointment-option-model.ts +7 -1
  39. package/src/models/bank-account-info-item-model.ts +78 -0
  40. package/src/models/bank-account-info-model.ts +78 -0
  41. package/src/models/bank-account-infos-model.ts +42 -0
  42. package/src/models/create-hospital-bank-account-info-command.ts +66 -0
  43. package/src/models/create-hospital-command.ts +15 -0
  44. package/src/models/hospital-item-model.ts +15 -0
  45. package/src/models/hospital-model.ts +15 -0
  46. package/src/models/index.ts +6 -0
  47. package/src/models/payment-method.ts +32 -0
  48. package/src/models/update-hospital-bank-account-info-command.ts +66 -0
  49. package/src/models/update-hospital-command.ts +15 -0
@@ -14,11 +14,14 @@ import { Configuration } from '../configuration';
14
14
  import { RequestArgs, BaseAPI } from '../base';
15
15
  import { AppointmentTimetableOverridesModel } from '../models';
16
16
  import { AppointmentTimetablesModel } from '../models';
17
+ import { BankAccountInfoModel } from '../models';
18
+ import { BankAccountInfosModel } from '../models';
17
19
  import { BatchAppointmentTimetablesResultModel } from '../models';
18
20
  import { BatchHospitalAppointmentTimetablesCommand } from '../models';
19
21
  import { BatchHospitalSpecialtyAppointmentTimetablesCommand } from '../models';
20
22
  import { BatchServiceAppointmentTimetablesCommand } from '../models';
21
23
  import { CreateHospitalAccreditationCommand } from '../models';
24
+ import { CreateHospitalBankAccountInfoCommand } from '../models';
22
25
  import { CreateHospitalCommand } from '../models';
23
26
  import { CreateHospitalContactCommand } from '../models';
24
27
  import { CreateHospitalEquipmentCommand } from '../models';
@@ -82,6 +85,7 @@ import { SnsType } from '../models';
82
85
  import { TranslateHospitalCommand } from '../models';
83
86
  import { TranslateHospitalServiceCommand } from '../models';
84
87
  import { TranslateHospitalSpecialtyCommand } from '../models';
88
+ import { UpdateHospitalBankAccountInfoCommand } from '../models';
85
89
  import { UpdateHospitalCommand } from '../models';
86
90
  import { UpdateHospitalContactCommand } from '../models';
87
91
  import { UpdateHospitalEquipmentCommand } from '../models';
@@ -218,6 +222,56 @@ export declare const HospitalsApiAxiosParamCreator: (configuration?: Configurati
218
222
  * @throws {RequiredError}
219
223
  */
220
224
  apiV1HospitalsHospitalIdAppointmenttimetablesGet: (hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
225
+ /**
226
+ *
227
+ * @summary Delete bankAccountInfo
228
+ * @param {string} hospitalId
229
+ * @param {string} bankAccountInfoId
230
+ * @param {*} [options] Override http request option.
231
+ * @throws {RequiredError}
232
+ */
233
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete: (hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
234
+ /**
235
+ *
236
+ * @summary Get bankAccountInfo
237
+ * @param {string} hospitalId
238
+ * @param {string} bankAccountInfoId
239
+ * @param {*} [options] Override http request option.
240
+ * @throws {RequiredError}
241
+ */
242
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet: (hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
243
+ /**
244
+ *
245
+ * @summary Update bankAccountInfo
246
+ * @param {string} hospitalId
247
+ * @param {string} bankAccountInfoId
248
+ * @param {UpdateHospitalBankAccountInfoCommand} [updateHospitalBankAccountInfoCommand]
249
+ * @param {*} [options] Override http request option.
250
+ * @throws {RequiredError}
251
+ */
252
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut: (hospitalId: string, bankAccountInfoId: string, updateHospitalBankAccountInfoCommand?: UpdateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
253
+ /**
254
+ *
255
+ * @summary Get all bankAccountInfos
256
+ * @param {string} hospitalId
257
+ * @param {string} [bank]
258
+ * @param {boolean} [isEnabled]
259
+ * @param {number} [page]
260
+ * @param {number} [limit]
261
+ * @param {Date} [lastRetrieved]
262
+ * @param {*} [options] Override http request option.
263
+ * @throws {RequiredError}
264
+ */
265
+ apiV1HospitalsHospitalIdBankaccountinfosGet: (hospitalId: string, bank?: string, isEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
266
+ /**
267
+ *
268
+ * @summary Create bankAccountInfo
269
+ * @param {string} hospitalId
270
+ * @param {CreateHospitalBankAccountInfoCommand} [createHospitalBankAccountInfoCommand]
271
+ * @param {*} [options] Override http request option.
272
+ * @throws {RequiredError}
273
+ */
274
+ apiV1HospitalsHospitalIdBankaccountinfosPost: (hospitalId: string, createHospitalBankAccountInfoCommand?: CreateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
221
275
  /**
222
276
  *
223
277
  * @summary Delete hospital contact
@@ -1681,6 +1735,56 @@ export declare const HospitalsApiFp: (configuration?: Configuration) => {
1681
1735
  * @throws {RequiredError}
1682
1736
  */
1683
1737
  apiV1HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppointmentTimetablesModel>>;
1738
+ /**
1739
+ *
1740
+ * @summary Delete bankAccountInfo
1741
+ * @param {string} hospitalId
1742
+ * @param {string} bankAccountInfoId
1743
+ * @param {*} [options] Override http request option.
1744
+ * @throws {RequiredError}
1745
+ */
1746
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete(hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
1747
+ /**
1748
+ *
1749
+ * @summary Get bankAccountInfo
1750
+ * @param {string} hospitalId
1751
+ * @param {string} bankAccountInfoId
1752
+ * @param {*} [options] Override http request option.
1753
+ * @throws {RequiredError}
1754
+ */
1755
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet(hospitalId: string, bankAccountInfoId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfoModel>>;
1756
+ /**
1757
+ *
1758
+ * @summary Update bankAccountInfo
1759
+ * @param {string} hospitalId
1760
+ * @param {string} bankAccountInfoId
1761
+ * @param {UpdateHospitalBankAccountInfoCommand} [updateHospitalBankAccountInfoCommand]
1762
+ * @param {*} [options] Override http request option.
1763
+ * @throws {RequiredError}
1764
+ */
1765
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut(hospitalId: string, bankAccountInfoId: string, updateHospitalBankAccountInfoCommand?: UpdateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfoModel>>;
1766
+ /**
1767
+ *
1768
+ * @summary Get all bankAccountInfos
1769
+ * @param {string} hospitalId
1770
+ * @param {string} [bank]
1771
+ * @param {boolean} [isEnabled]
1772
+ * @param {number} [page]
1773
+ * @param {number} [limit]
1774
+ * @param {Date} [lastRetrieved]
1775
+ * @param {*} [options] Override http request option.
1776
+ * @throws {RequiredError}
1777
+ */
1778
+ apiV1HospitalsHospitalIdBankaccountinfosGet(hospitalId: string, bank?: string, isEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfosModel>>;
1779
+ /**
1780
+ *
1781
+ * @summary Create bankAccountInfo
1782
+ * @param {string} hospitalId
1783
+ * @param {CreateHospitalBankAccountInfoCommand} [createHospitalBankAccountInfoCommand]
1784
+ * @param {*} [options] Override http request option.
1785
+ * @throws {RequiredError}
1786
+ */
1787
+ apiV1HospitalsHospitalIdBankaccountinfosPost(hospitalId: string, createHospitalBankAccountInfoCommand?: CreateHospitalBankAccountInfoCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BankAccountInfoModel>>;
1684
1788
  /**
1685
1789
  *
1686
1790
  * @summary Delete hospital contact
@@ -3144,6 +3248,56 @@ export declare const HospitalsApiFactory: (configuration?: Configuration, basePa
3144
3248
  * @throws {RequiredError}
3145
3249
  */
3146
3250
  apiV1HospitalsHospitalIdAppointmenttimetablesGet(hospitalId: string, dayOfWeek?: DayOfWeek, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<AppointmentTimetablesModel>;
3251
+ /**
3252
+ *
3253
+ * @summary Delete bankAccountInfo
3254
+ * @param {string} hospitalId
3255
+ * @param {string} bankAccountInfoId
3256
+ * @param {*} [options] Override http request option.
3257
+ * @throws {RequiredError}
3258
+ */
3259
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete(hospitalId: string, bankAccountInfoId: string, options?: any): AxiosPromise<boolean>;
3260
+ /**
3261
+ *
3262
+ * @summary Get bankAccountInfo
3263
+ * @param {string} hospitalId
3264
+ * @param {string} bankAccountInfoId
3265
+ * @param {*} [options] Override http request option.
3266
+ * @throws {RequiredError}
3267
+ */
3268
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet(hospitalId: string, bankAccountInfoId: string, options?: any): AxiosPromise<BankAccountInfoModel>;
3269
+ /**
3270
+ *
3271
+ * @summary Update bankAccountInfo
3272
+ * @param {string} hospitalId
3273
+ * @param {string} bankAccountInfoId
3274
+ * @param {UpdateHospitalBankAccountInfoCommand} [updateHospitalBankAccountInfoCommand]
3275
+ * @param {*} [options] Override http request option.
3276
+ * @throws {RequiredError}
3277
+ */
3278
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut(hospitalId: string, bankAccountInfoId: string, updateHospitalBankAccountInfoCommand?: UpdateHospitalBankAccountInfoCommand, options?: any): AxiosPromise<BankAccountInfoModel>;
3279
+ /**
3280
+ *
3281
+ * @summary Get all bankAccountInfos
3282
+ * @param {string} hospitalId
3283
+ * @param {string} [bank]
3284
+ * @param {boolean} [isEnabled]
3285
+ * @param {number} [page]
3286
+ * @param {number} [limit]
3287
+ * @param {Date} [lastRetrieved]
3288
+ * @param {*} [options] Override http request option.
3289
+ * @throws {RequiredError}
3290
+ */
3291
+ apiV1HospitalsHospitalIdBankaccountinfosGet(hospitalId: string, bank?: string, isEnabled?: boolean, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<BankAccountInfosModel>;
3292
+ /**
3293
+ *
3294
+ * @summary Create bankAccountInfo
3295
+ * @param {string} hospitalId
3296
+ * @param {CreateHospitalBankAccountInfoCommand} [createHospitalBankAccountInfoCommand]
3297
+ * @param {*} [options] Override http request option.
3298
+ * @throws {RequiredError}
3299
+ */
3300
+ apiV1HospitalsHospitalIdBankaccountinfosPost(hospitalId: string, createHospitalBankAccountInfoCommand?: CreateHospitalBankAccountInfoCommand, options?: any): AxiosPromise<BankAccountInfoModel>;
3147
3301
  /**
3148
3302
  *
3149
3303
  * @summary Delete hospital contact
@@ -4837,6 +4991,131 @@ export interface HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesGetReq
4837
4991
  */
4838
4992
  readonly lastRetrieved?: Date;
4839
4993
  }
4994
+ /**
4995
+ * Request parameters for apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete operation in HospitalsApi.
4996
+ * @export
4997
+ * @interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDeleteRequest
4998
+ */
4999
+ export interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDeleteRequest {
5000
+ /**
5001
+ *
5002
+ * @type {string}
5003
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete
5004
+ */
5005
+ readonly hospitalId: string;
5006
+ /**
5007
+ *
5008
+ * @type {string}
5009
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete
5010
+ */
5011
+ readonly bankAccountInfoId: string;
5012
+ }
5013
+ /**
5014
+ * Request parameters for apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet operation in HospitalsApi.
5015
+ * @export
5016
+ * @interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGetRequest
5017
+ */
5018
+ export interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGetRequest {
5019
+ /**
5020
+ *
5021
+ * @type {string}
5022
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet
5023
+ */
5024
+ readonly hospitalId: string;
5025
+ /**
5026
+ *
5027
+ * @type {string}
5028
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet
5029
+ */
5030
+ readonly bankAccountInfoId: string;
5031
+ }
5032
+ /**
5033
+ * Request parameters for apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut operation in HospitalsApi.
5034
+ * @export
5035
+ * @interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPutRequest
5036
+ */
5037
+ export interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPutRequest {
5038
+ /**
5039
+ *
5040
+ * @type {string}
5041
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut
5042
+ */
5043
+ readonly hospitalId: string;
5044
+ /**
5045
+ *
5046
+ * @type {string}
5047
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut
5048
+ */
5049
+ readonly bankAccountInfoId: string;
5050
+ /**
5051
+ *
5052
+ * @type {UpdateHospitalBankAccountInfoCommand}
5053
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut
5054
+ */
5055
+ readonly updateHospitalBankAccountInfoCommand?: UpdateHospitalBankAccountInfoCommand;
5056
+ }
5057
+ /**
5058
+ * Request parameters for apiV1HospitalsHospitalIdBankaccountinfosGet operation in HospitalsApi.
5059
+ * @export
5060
+ * @interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGetRequest
5061
+ */
5062
+ export interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGetRequest {
5063
+ /**
5064
+ *
5065
+ * @type {string}
5066
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGet
5067
+ */
5068
+ readonly hospitalId: string;
5069
+ /**
5070
+ *
5071
+ * @type {string}
5072
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGet
5073
+ */
5074
+ readonly bank?: string;
5075
+ /**
5076
+ *
5077
+ * @type {boolean}
5078
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGet
5079
+ */
5080
+ readonly isEnabled?: boolean;
5081
+ /**
5082
+ *
5083
+ * @type {number}
5084
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGet
5085
+ */
5086
+ readonly page?: number;
5087
+ /**
5088
+ *
5089
+ * @type {number}
5090
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGet
5091
+ */
5092
+ readonly limit?: number;
5093
+ /**
5094
+ *
5095
+ * @type {Date}
5096
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGet
5097
+ */
5098
+ readonly lastRetrieved?: Date;
5099
+ }
5100
+ /**
5101
+ * Request parameters for apiV1HospitalsHospitalIdBankaccountinfosPost operation in HospitalsApi.
5102
+ * @export
5103
+ * @interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPostRequest
5104
+ */
5105
+ export interface HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPostRequest {
5106
+ /**
5107
+ *
5108
+ * @type {string}
5109
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPost
5110
+ */
5111
+ readonly hospitalId: string;
5112
+ /**
5113
+ *
5114
+ * @type {CreateHospitalBankAccountInfoCommand}
5115
+ * @memberof HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPost
5116
+ */
5117
+ readonly createHospitalBankAccountInfoCommand?: CreateHospitalBankAccountInfoCommand;
5118
+ }
4840
5119
  /**
4841
5120
  * Request parameters for apiV1HospitalsHospitalIdContactsContactIdDelete operation in HospitalsApi.
4842
5121
  * @export
@@ -8669,6 +8948,51 @@ export declare class HospitalsApi extends BaseAPI {
8669
8948
  * @memberof HospitalsApi
8670
8949
  */
8671
8950
  apiV1HospitalsHospitalIdAppointmenttimetablesGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdAppointmenttimetablesGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<AppointmentTimetablesModel, any>>;
8951
+ /**
8952
+ *
8953
+ * @summary Delete bankAccountInfo
8954
+ * @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDeleteRequest} requestParameters Request parameters.
8955
+ * @param {*} [options] Override http request option.
8956
+ * @throws {RequiredError}
8957
+ * @memberof HospitalsApi
8958
+ */
8959
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDelete(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdDeleteRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
8960
+ /**
8961
+ *
8962
+ * @summary Get bankAccountInfo
8963
+ * @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGetRequest} requestParameters Request parameters.
8964
+ * @param {*} [options] Override http request option.
8965
+ * @throws {RequiredError}
8966
+ * @memberof HospitalsApi
8967
+ */
8968
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfoModel, any>>;
8969
+ /**
8970
+ *
8971
+ * @summary Update bankAccountInfo
8972
+ * @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPutRequest} requestParameters Request parameters.
8973
+ * @param {*} [options] Override http request option.
8974
+ * @throws {RequiredError}
8975
+ * @memberof HospitalsApi
8976
+ */
8977
+ apiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPut(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosBankAccountInfoIdPutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfoModel, any>>;
8978
+ /**
8979
+ *
8980
+ * @summary Get all bankAccountInfos
8981
+ * @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGetRequest} requestParameters Request parameters.
8982
+ * @param {*} [options] Override http request option.
8983
+ * @throws {RequiredError}
8984
+ * @memberof HospitalsApi
8985
+ */
8986
+ apiV1HospitalsHospitalIdBankaccountinfosGet(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosGetRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfosModel, any>>;
8987
+ /**
8988
+ *
8989
+ * @summary Create bankAccountInfo
8990
+ * @param {HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPostRequest} requestParameters Request parameters.
8991
+ * @param {*} [options] Override http request option.
8992
+ * @throws {RequiredError}
8993
+ * @memberof HospitalsApi
8994
+ */
8995
+ apiV1HospitalsHospitalIdBankaccountinfosPost(requestParameters: HospitalsApiApiV1HospitalsHospitalIdBankaccountinfosPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<BankAccountInfoModel, any>>;
8672
8996
  /**
8673
8997
  *
8674
8998
  * @summary Delete hospital contact