@vality/swag-wallets 0.1.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 (128) hide show
  1. package/README.md +236 -0
  2. package/api/api.d.ts +23 -0
  3. package/api/currencies.service.d.ts +41 -0
  4. package/api/deposits.service.d.ts +171 -0
  5. package/api/downloads.service.d.ts +41 -0
  6. package/api/identities.service.d.ts +134 -0
  7. package/api/providers.service.d.ts +70 -0
  8. package/api/reports.service.d.ts +116 -0
  9. package/api/residences.service.d.ts +41 -0
  10. package/api/w2W.service.d.ts +71 -0
  11. package/api/wallets.service.d.ts +199 -0
  12. package/api/webhooks.service.d.ts +132 -0
  13. package/api/withdrawals.service.d.ts +410 -0
  14. package/api.base.service.d.ts +12 -0
  15. package/api.module.d.ts +11 -0
  16. package/configuration.d.ts +106 -0
  17. package/encoder.d.ts +11 -0
  18. package/fesm2022/vality-swag-wallets.mjs +3577 -0
  19. package/fesm2022/vality-swag-wallets.mjs.map +1 -0
  20. package/index.d.ts +6 -0
  21. package/model/asset.d.ts +22 -0
  22. package/model/badRequest.d.ts +38 -0
  23. package/model/bankCardDestinationResource.d.ts +29 -0
  24. package/model/bankCardReceiverResource.d.ts +33 -0
  25. package/model/bankCardReceiverResourceParams.d.ts +29 -0
  26. package/model/bankCardSenderResource.d.ts +33 -0
  27. package/model/bankCardSenderResourceParams.d.ts +33 -0
  28. package/model/browserGetRequest.d.ts +16 -0
  29. package/model/browserPostRequest.d.ts +21 -0
  30. package/model/browserRequest.d.ts +15 -0
  31. package/model/conflictRequest.d.ts +23 -0
  32. package/model/contactInfo.d.ts +22 -0
  33. package/model/cryptoWallet.d.ts +22 -0
  34. package/model/cryptoWalletDestinationResource.d.ts +25 -0
  35. package/model/currency.d.ts +34 -0
  36. package/model/deposit.d.ts +56 -0
  37. package/model/depositAdjustment.d.ts +40 -0
  38. package/model/depositAdjustmentFailure.d.ts +17 -0
  39. package/model/depositAdjustmentStatus.d.ts +25 -0
  40. package/model/depositAdjustmentStatusFailure.d.ts +20 -0
  41. package/model/depositAllOfBody.d.ts +22 -0
  42. package/model/depositAllOfFee.d.ts +22 -0
  43. package/model/depositFailure.d.ts +17 -0
  44. package/model/depositRevert.d.ts +51 -0
  45. package/model/depositRevertAllOfBody.d.ts +22 -0
  46. package/model/depositRevertFailure.d.ts +17 -0
  47. package/model/depositRevertStatus.d.ts +25 -0
  48. package/model/depositRevertStatusFailure.d.ts +20 -0
  49. package/model/depositStatus.d.ts +25 -0
  50. package/model/depositStatusFailure.d.ts +20 -0
  51. package/model/destination.d.ts +65 -0
  52. package/model/destinationAuthData.d.ts +24 -0
  53. package/model/destinationGrantRequest.d.ts +22 -0
  54. package/model/destinationResource.d.ts +26 -0
  55. package/model/destinationStatus.d.ts +26 -0
  56. package/model/destinationsTopic.d.ts +27 -0
  57. package/model/digitalWallet.d.ts +34 -0
  58. package/model/digitalWalletDestinationResource.d.ts +37 -0
  59. package/model/fileDownload.d.ts +19 -0
  60. package/model/getWithdrawalMethods200Response.d.ts +13 -0
  61. package/model/identity.d.ts +46 -0
  62. package/model/invalidOperationParameters.d.ts +15 -0
  63. package/model/listDepositAdjustments200Response.d.ts +20 -0
  64. package/model/listDepositReverts200Response.d.ts +20 -0
  65. package/model/listDeposits200Response.d.ts +20 -0
  66. package/model/listDestinations200Response.d.ts +20 -0
  67. package/model/listIdentities200Response.d.ts +20 -0
  68. package/model/listWallets200Response.d.ts +20 -0
  69. package/model/listWithdrawals200Response.d.ts +20 -0
  70. package/model/models.d.ts +104 -0
  71. package/model/provider.d.ts +26 -0
  72. package/model/quoteParameters.d.ts +24 -0
  73. package/model/quoteParametersBody.d.ts +22 -0
  74. package/model/receiverResource.d.ts +24 -0
  75. package/model/receiverResourceParams.d.ts +24 -0
  76. package/model/redirect.d.ts +14 -0
  77. package/model/report.d.ts +49 -0
  78. package/model/reportFilesInner.d.ts +15 -0
  79. package/model/reportParams.d.ts +29 -0
  80. package/model/residence.d.ts +26 -0
  81. package/model/securedBankCard.d.ts +26 -0
  82. package/model/senderReceiverDestinationAuthData.d.ts +25 -0
  83. package/model/senderResource.d.ts +24 -0
  84. package/model/senderResourceParams.d.ts +24 -0
  85. package/model/subFailure.d.ts +19 -0
  86. package/model/userInteraction.d.ts +15 -0
  87. package/model/userInteractionChange.d.ts +22 -0
  88. package/model/userInteractionCreated.d.ts +16 -0
  89. package/model/userInteractionFinished.d.ts +14 -0
  90. package/model/userInteractionFormInner.d.ts +19 -0
  91. package/model/w2WTransfer.d.ts +38 -0
  92. package/model/w2WTransferFailure.d.ts +20 -0
  93. package/model/w2WTransferParameters.d.ts +28 -0
  94. package/model/w2WTransferParametersBody.d.ts +22 -0
  95. package/model/w2WTransferStatus.d.ts +25 -0
  96. package/model/w2WTransferStatusFailure.d.ts +20 -0
  97. package/model/wallet.d.ts +46 -0
  98. package/model/walletAccount.d.ts +18 -0
  99. package/model/walletAccountAvailable.d.ts +22 -0
  100. package/model/walletAccountOwn.d.ts +22 -0
  101. package/model/walletGrantRequest.d.ts +24 -0
  102. package/model/walletGrantRequestAsset.d.ts +22 -0
  103. package/model/webhook.d.ts +33 -0
  104. package/model/webhookScope.d.ts +25 -0
  105. package/model/withdrawal.d.ts +58 -0
  106. package/model/withdrawalAllOfBody.d.ts +22 -0
  107. package/model/withdrawalAllOfQuote.d.ts +24 -0
  108. package/model/withdrawalEvent.d.ts +24 -0
  109. package/model/withdrawalEventChange.d.ts +24 -0
  110. package/model/withdrawalFailure.d.ts +17 -0
  111. package/model/withdrawalMethod.d.ts +23 -0
  112. package/model/withdrawalMethodBankCard.d.ts +18 -0
  113. package/model/withdrawalMethodDigitalWallet.d.ts +18 -0
  114. package/model/withdrawalMethodGeneric.d.ts +18 -0
  115. package/model/withdrawalParameters.d.ts +70 -0
  116. package/model/withdrawalQuote.d.ts +30 -0
  117. package/model/withdrawalQuoteCashFrom.d.ts +22 -0
  118. package/model/withdrawalQuoteCashTo.d.ts +22 -0
  119. package/model/withdrawalQuoteParams.d.ts +44 -0
  120. package/model/withdrawalQuoteParamsCash.d.ts +22 -0
  121. package/model/withdrawalReadQuote.d.ts +26 -0
  122. package/model/withdrawalStatus.d.ts +25 -0
  123. package/model/withdrawalStatusChanged.d.ts +29 -0
  124. package/model/withdrawalStatusFailure.d.ts +20 -0
  125. package/model/withdrawalsTopic.d.ts +31 -0
  126. package/package.json +34 -0
  127. package/param.d.ts +37 -0
  128. package/variables.d.ts +8 -0
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vality-swag-wallets.mjs","sources":["../../variables.ts","../../encoder.ts","../../configuration.ts","../../api.base.service.ts","../../api/currencies.service.ts","../../api/deposits.service.ts","../../api/downloads.service.ts","../../api/identities.service.ts","../../api/providers.service.ts","../../api/reports.service.ts","../../api/residences.service.ts","../../api/w2W.service.ts","../../api/wallets.service.ts","../../api/webhooks.service.ts","../../api/withdrawals.service.ts","../../api/api.ts","../../model/asset.ts","../../model/badRequest.ts","../../model/browserRequest.ts","../../model/conflictRequest.ts","../../model/contactInfo.ts","../../model/cryptoWallet.ts","../../model/currency.ts","../../model/deposit.ts","../../model/depositAdjustment.ts","../../model/depositAdjustmentStatus.ts","../../model/depositAllOfBody.ts","../../model/depositAllOfFee.ts","../../model/depositRevert.ts","../../model/depositRevertAllOfBody.ts","../../model/depositRevertStatus.ts","../../model/depositStatus.ts","../../model/destination.ts","../../model/destinationAuthData.ts","../../model/destinationGrantRequest.ts","../../model/destinationResource.ts","../../model/destinationStatus.ts","../../model/destinationsTopic.ts","../../model/digitalWallet.ts","../../model/fileDownload.ts","../../model/identity.ts","../../model/invalidOperationParameters.ts","../../model/provider.ts","../../model/quoteParametersBody.ts","../../model/receiverResource.ts","../../model/receiverResourceParams.ts","../../model/report.ts","../../model/reportFilesInner.ts","../../model/reportParams.ts","../../model/residence.ts","../../model/securedBankCard.ts","../../model/senderResource.ts","../../model/senderResourceParams.ts","../../model/subFailure.ts","../../model/userInteraction.ts","../../model/userInteractionChange.ts","../../model/userInteractionFormInner.ts","../../model/w2WTransferParametersBody.ts","../../model/w2WTransferStatus.ts","../../model/wallet.ts","../../model/walletAccountAvailable.ts","../../model/walletAccountOwn.ts","../../model/walletGrantRequestAsset.ts","../../model/webhookScope.ts","../../model/withdrawal.ts","../../model/withdrawalAllOfBody.ts","../../model/withdrawalAllOfQuote.ts","../../model/withdrawalEventChange.ts","../../model/withdrawalMethod.ts","../../model/withdrawalParameters.ts","../../model/withdrawalQuoteCashFrom.ts","../../model/withdrawalQuoteCashTo.ts","../../model/withdrawalQuoteParamsCash.ts","../../model/withdrawalStatus.ts","../../model/withdrawalStatusChanged.ts","../../model/withdrawalsTopic.ts","../../api.module.ts","../../vality-swag-wallets.ts"],"sourcesContent":["import { InjectionToken } from '@angular/core';\n\nexport const BASE_PATH = new InjectionToken<string>('basePath');\nexport const COLLECTION_FORMATS = {\n 'csv': ',',\n 'tsv': ' ',\n 'ssv': ' ',\n 'pipes': '|'\n}\n","import { HttpParameterCodec } from '@angular/common/http';\n\n/**\n * Custom HttpParameterCodec\n * Workaround for https://github.com/angular/angular/issues/18261\n */\nexport class CustomHttpParameterCodec implements HttpParameterCodec {\n encodeKey(k: string): string {\n return encodeURIComponent(k);\n }\n encodeValue(v: string): string {\n return encodeURIComponent(v);\n }\n decodeKey(k: string): string {\n return decodeURIComponent(k);\n }\n decodeValue(v: string): string {\n return decodeURIComponent(v);\n }\n}\n","import { HttpHeaders, HttpParams, HttpParameterCodec } from '@angular/common/http';\nimport { Param } from './param';\n\nexport interface ConfigurationParameters {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: {[ key: string ]: string};\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Override the default method for encoding path parameters in various\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam?: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials?: {[ key: string ]: string | (() => string | undefined)};\n}\n\nexport class Configuration {\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n apiKeys?: {[ key: string ]: string};\n username?: string;\n password?: string;\n /**\n * @deprecated Since 5.0. Use credentials instead\n */\n accessToken?: string | (() => string);\n basePath?: string;\n withCredentials?: boolean;\n /**\n * Takes care of encoding query- and form-parameters.\n */\n encoder?: HttpParameterCodec;\n /**\n * Encoding of various path parameter\n * <a href=\"https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.1.0.md#style-values\">styles</a>.\n * <p>\n * See {@link README.md} for more details\n * </p>\n */\n encodeParam: (param: Param) => string;\n /**\n * The keys are the names in the securitySchemes section of the OpenAPI\n * document. They should map to the value used for authentication\n * minus any standard prefixes such as 'Basic' or 'Bearer'.\n */\n credentials: {[ key: string ]: string | (() => string | undefined)};\n\n constructor(configurationParameters: ConfigurationParameters = {}) {\n this.apiKeys = configurationParameters.apiKeys;\n this.username = configurationParameters.username;\n this.password = configurationParameters.password;\n this.accessToken = configurationParameters.accessToken;\n this.basePath = configurationParameters.basePath;\n this.withCredentials = configurationParameters.withCredentials;\n this.encoder = configurationParameters.encoder;\n if (configurationParameters.encodeParam) {\n this.encodeParam = configurationParameters.encodeParam;\n }\n else {\n this.encodeParam = param => this.defaultEncodeParam(param);\n }\n if (configurationParameters.credentials) {\n this.credentials = configurationParameters.credentials;\n }\n else {\n this.credentials = {};\n }\n\n // init default bearer credential\n if (!this.credentials['bearer']) {\n this.credentials['bearer'] = () => {\n if (this.apiKeys === null || this.apiKeys === undefined) {\n return undefined;\n } else {\n return this.apiKeys['bearer'] || this.apiKeys['Authorization'];\n }\n };\n }\n }\n\n /**\n * Select the correct content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param contentTypes - the array of content types that are available for selection\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderContentType (contentTypes: string[]): string | undefined {\n if (contentTypes.length === 0) {\n return undefined;\n }\n\n const type = contentTypes.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return contentTypes[0];\n }\n return type;\n }\n\n /**\n * Select the correct accept content-type to use for a request.\n * Uses {@link Configuration#isJsonMime} to determine the correct accept content-type.\n * If no content type is found return the first found type if the contentTypes is not empty\n * @param accepts - the array of content types that are available for selection.\n * @returns the selected content-type or <code>undefined</code> if no selection could be made.\n */\n public selectHeaderAccept(accepts: string[]): string | undefined {\n if (accepts.length === 0) {\n return undefined;\n }\n\n const type = accepts.find((x: string) => this.isJsonMime(x));\n if (type === undefined) {\n return accepts[0];\n }\n return type;\n }\n\n /**\n * Check if the given MIME is a JSON MIME.\n * JSON MIME examples:\n * application/json\n * application/json; charset=UTF8\n * APPLICATION/JSON\n * application/vnd.company+json\n * @param mime - MIME (Multipurpose Internet Mail Extensions)\n * @return True if the given MIME is JSON, false otherwise.\n */\n public isJsonMime(mime: string): boolean {\n const jsonMime: RegExp = new RegExp('^(application\\/json|[^;/ \\t]+\\/[^;/ \\t]+[+]json)[ \\t]*(;.*)?$', 'i');\n return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');\n }\n\n public lookupCredential(key: string): string | undefined {\n const value = this.credentials[key];\n return typeof value === 'function'\n ? value()\n : value;\n }\n\n public addCredentialToHeaders(credentialKey: string, headerName: string, headers: HttpHeaders, prefix?: string): HttpHeaders {\n const value = this.lookupCredential(credentialKey);\n return value\n ? headers.set(headerName, (prefix ?? '') + value)\n : headers;\n }\n\n public addCredentialToQuery(credentialKey: string, paramName: string, query: HttpParams): HttpParams {\n const value = this.lookupCredential(credentialKey);\n return value\n ? query.set(paramName, value)\n : query;\n }\n\n private defaultEncodeParam(param: Param): string {\n // This implementation exists as fallback for missing configuration\n // and for backwards compatibility to older typescript-angular generator versions.\n // It only works for the 'simple' parameter style.\n // Date-handling only works for the 'date-time' format.\n // All other styles and Date-formats are probably handled incorrectly.\n //\n // But: if that's all you need (i.e.: the most common use-case): no need for customization!\n\n const value = param.dataFormat === 'date-time' && param.value instanceof Date\n ? (param.value as Date).toISOString()\n : param.value;\n\n return encodeURIComponent(String(value));\n }\n}\n","import { HttpHeaders, HttpParams, HttpParameterCodec } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from './encoder';\nimport { Configuration } from './configuration';\n\nexport class BaseService {\n protected basePath = '';\n public defaultHeaders = new HttpHeaders();\n public configuration: Configuration;\n public encoder: HttpParameterCodec;\n\n constructor(basePath?: string|string[], configuration?: Configuration) {\n this.configuration = configuration || new Configuration();\n if (typeof this.configuration.basePath !== 'string') {\n const firstBasePath = Array.isArray(basePath) ? basePath[0] : undefined;\n if (firstBasePath != undefined) {\n basePath = firstBasePath;\n }\n\n if (typeof basePath !== 'string') {\n basePath = this.basePath;\n }\n this.configuration.basePath = basePath;\n }\n this.encoder = this.configuration.encoder || new CustomHttpParameterCodec();\n }\n\n protected canConsumeForm(consumes: string[]): boolean {\n return consumes.indexOf('multipart/form-data') !== -1;\n }\n\n protected addToHttpParams(httpParams: HttpParams, value: any, key?: string): HttpParams {\n // If the value is an object (but not a Date), recursively add its keys.\n if (typeof value === 'object' && !(value instanceof Date)) {\n return this.addToHttpParamsRecursive(httpParams, value, key);\n }\n return this.addToHttpParamsRecursive(httpParams, value, key);\n }\n\n protected addToHttpParamsRecursive(httpParams: HttpParams, value?: any, key?: string): HttpParams {\n if (value === null || value === undefined) {\n return httpParams;\n }\n if (typeof value === 'object') {\n // If JSON format is preferred, key must be provided.\n if (key != null) {\n return httpParams.append(key, JSON.stringify(value));\n }\n // Otherwise, if it's an array, add each element.\n if (Array.isArray(value)) {\n value.forEach(elem => httpParams = this.addToHttpParamsRecursive(httpParams, elem, key));\n } else if (value instanceof Date) {\n if (key != null) {\n httpParams = httpParams.append(key, value.toISOString());\n } else {\n throw Error(\"key may not be null if value is Date\");\n }\n } else {\n Object.keys(value).forEach(k => {\n const paramKey = key ? `${key}.${k}` : k;\n httpParams = this.addToHttpParamsRecursive(httpParams, value[k], paramKey);\n });\n }\n return httpParams;\n } else if (key != null) {\n return httpParams.append(key, value);\n }\n throw Error(\"key may not be null if value is not object or array\");\n }\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { Currency } from '../model/currency';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface GetCurrencyRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */\n currencyID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class CurrenciesService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Get currency description\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getCurrency(requestParameters: GetCurrencyRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Currency>;\n public getCurrency(requestParameters: GetCurrencyRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Currency>>;\n public getCurrency(requestParameters: GetCurrencyRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Currency>>;\n public getCurrency(requestParameters: GetCurrencyRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getCurrency.');\n }\n const currencyID = requestParameters?.currencyID;\n if (currencyID === null || currencyID === undefined) {\n throw new Error('Required parameter currencyID was null or undefined when calling getCurrency.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/currencies/${this.configuration.encodeParam({name: \"currencyID\", value: currencyID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Currency>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { ListDepositAdjustments200Response } from '../model/listDepositAdjustments200Response';\n// @ts-ignore\nimport { ListDepositReverts200Response } from '../model/listDepositReverts200Response';\n// @ts-ignore\nimport { ListDeposits200Response } from '../model/listDeposits200Response';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface ListDepositAdjustmentsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Selection limit */\n limit: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Wallet identifier */\n walletID?: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID?: string;\n /** Identifier of the input of funds */\n depositID?: string;\n /** Identifier of the fund source */\n sourceID?: string;\n status?: 'Pending' | 'Succeeded' | 'Failed';\n /** Creation date from */\n createdAtFrom?: string;\n /** Creation date to */\n createdAtTo?: string;\n /** Amount of monetary funds in minor units */\n amountFrom?: number;\n /** Amount of monetary funds in minor units */\n amountTo?: number;\n /** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */\n currencyID?: string;\n /** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */\n continuationToken?: string;\n}\n\nexport interface ListDepositRevertsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Selection limit */\n limit: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Identifier of the wallet */\n walletID?: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID?: string;\n /** Identifier of the input of funds */\n depositID?: string;\n /** Identifier of the source of funds */\n sourceID?: string;\n status?: 'Pending' | 'Succeeded' | 'Failed';\n /** Creation date from */\n createdAtFrom?: string;\n /** Creation date to */\n createdAtTo?: string;\n /** Amount of monetary funds in minor units */\n amountFrom?: number;\n /** Amount of monetary funds in minor units */\n amountTo?: number;\n /** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */\n currencyID?: string;\n /** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */\n continuationToken?: string;\n}\n\nexport interface ListDepositsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Selection limit */\n limit: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Identifier of the wallet */\n walletID?: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID?: string;\n /** Identifier of the deposit */\n depositID?: string;\n /** Identifier of the funds source */\n sourceID?: string;\n status?: 'Pending' | 'Succeeded' | 'Failed';\n /** Creation date from */\n createdAtFrom?: string;\n /** Creation date to */\n createdAtTo?: string;\n revertStatus?: 'None' | 'Partial' | 'Full';\n /** Amount of monetary funds in minor units */\n amountFrom?: number;\n /** Amount of monetary funds in minor units */\n amountTo?: number;\n /** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */\n currencyID?: string;\n /** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */\n continuationToken?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class DepositsService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Finding adjustments\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listDepositAdjustments(requestParameters: ListDepositAdjustmentsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<ListDepositAdjustments200Response>;\n public listDepositAdjustments(requestParameters: ListDepositAdjustmentsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ListDepositAdjustments200Response>>;\n public listDepositAdjustments(requestParameters: ListDepositAdjustmentsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ListDepositAdjustments200Response>>;\n public listDepositAdjustments(requestParameters: ListDepositAdjustmentsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listDepositAdjustments.');\n }\n const limit = requestParameters?.limit;\n if (limit === null || limit === undefined) {\n throw new Error('Required parameter limit was null or undefined when calling listDepositAdjustments.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const walletID = requestParameters?.walletID;\n const identityID = requestParameters?.identityID;\n const depositID = requestParameters?.depositID;\n const sourceID = requestParameters?.sourceID;\n const status = requestParameters?.status;\n const createdAtFrom = requestParameters?.createdAtFrom;\n const createdAtTo = requestParameters?.createdAtTo;\n const amountFrom = requestParameters?.amountFrom;\n const amountTo = requestParameters?.amountTo;\n const currencyID = requestParameters?.currencyID;\n const continuationToken = requestParameters?.continuationToken;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>walletID, 'walletID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>depositID, 'depositID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>sourceID, 'sourceID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>status, 'status');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtFrom, 'createdAtFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtTo, 'createdAtTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountFrom, 'amountFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountTo, 'amountTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>currencyID, 'currencyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>limit, 'limit');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>continuationToken, 'continuationToken');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/deposit-adjustments`;\n return this.httpClient.request<ListDepositAdjustments200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Search for reverts\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listDepositReverts(requestParameters: ListDepositRevertsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<ListDepositReverts200Response>;\n public listDepositReverts(requestParameters: ListDepositRevertsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ListDepositReverts200Response>>;\n public listDepositReverts(requestParameters: ListDepositRevertsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ListDepositReverts200Response>>;\n public listDepositReverts(requestParameters: ListDepositRevertsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listDepositReverts.');\n }\n const limit = requestParameters?.limit;\n if (limit === null || limit === undefined) {\n throw new Error('Required parameter limit was null or undefined when calling listDepositReverts.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const walletID = requestParameters?.walletID;\n const identityID = requestParameters?.identityID;\n const depositID = requestParameters?.depositID;\n const sourceID = requestParameters?.sourceID;\n const status = requestParameters?.status;\n const createdAtFrom = requestParameters?.createdAtFrom;\n const createdAtTo = requestParameters?.createdAtTo;\n const amountFrom = requestParameters?.amountFrom;\n const amountTo = requestParameters?.amountTo;\n const currencyID = requestParameters?.currencyID;\n const continuationToken = requestParameters?.continuationToken;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>walletID, 'walletID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>depositID, 'depositID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>sourceID, 'sourceID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>status, 'status');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtFrom, 'createdAtFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtTo, 'createdAtTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountFrom, 'amountFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountTo, 'amountTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>currencyID, 'currencyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>limit, 'limit');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>continuationToken, 'continuationToken');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/deposit-reverts`;\n return this.httpClient.request<ListDepositReverts200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Search for deposits\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listDeposits(requestParameters: ListDepositsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<ListDeposits200Response>;\n public listDeposits(requestParameters: ListDepositsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ListDeposits200Response>>;\n public listDeposits(requestParameters: ListDepositsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ListDeposits200Response>>;\n public listDeposits(requestParameters: ListDepositsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listDeposits.');\n }\n const limit = requestParameters?.limit;\n if (limit === null || limit === undefined) {\n throw new Error('Required parameter limit was null or undefined when calling listDeposits.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const walletID = requestParameters?.walletID;\n const identityID = requestParameters?.identityID;\n const depositID = requestParameters?.depositID;\n const sourceID = requestParameters?.sourceID;\n const status = requestParameters?.status;\n const createdAtFrom = requestParameters?.createdAtFrom;\n const createdAtTo = requestParameters?.createdAtTo;\n const revertStatus = requestParameters?.revertStatus;\n const amountFrom = requestParameters?.amountFrom;\n const amountTo = requestParameters?.amountTo;\n const currencyID = requestParameters?.currencyID;\n const continuationToken = requestParameters?.continuationToken;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>walletID, 'walletID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>depositID, 'depositID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>sourceID, 'sourceID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>status, 'status');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtFrom, 'createdAtFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtTo, 'createdAtTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>revertStatus, 'revertStatus');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountFrom, 'amountFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountTo, 'amountTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>currencyID, 'currencyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>limit, 'limit');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>continuationToken, 'continuationToken');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/deposits`;\n return this.httpClient.request<ListDeposits200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { FileDownload } from '../model/fileDownload';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface DownloadFileRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** The file identifier */\n fileID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class DownloadsService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Get a link to download a file\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public downloadFile(requestParameters: DownloadFileRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<FileDownload>;\n public downloadFile(requestParameters: DownloadFileRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<FileDownload>>;\n public downloadFile(requestParameters: DownloadFileRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<FileDownload>>;\n public downloadFile(requestParameters: DownloadFileRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling downloadFile.');\n }\n const fileID = requestParameters?.fileID;\n if (fileID === null || fileID === undefined) {\n throw new Error('Required parameter fileID was null or undefined when calling downloadFile.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/files/${this.configuration.encodeParam({name: \"fileID\", value: fileID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/download`;\n return this.httpClient.request<FileDownload>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { ConflictRequest } from '../model/conflictRequest';\n// @ts-ignore\nimport { GetWithdrawalMethods200Response } from '../model/getWithdrawalMethods200Response';\n// @ts-ignore\nimport { Identity } from '../model/identity';\n// @ts-ignore\nimport { InvalidOperationParameters } from '../model/invalidOperationParameters';\n// @ts-ignore\nimport { ListIdentities200Response } from '../model/listIdentities200Response';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface CreateIdentityRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Data of the identity created */\n identity: Identity;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetIdentityRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWithdrawalMethodsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface ListIdentitiesRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Service provider\\&#39;s identifier */\n providerID?: string;\n /** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */\n continuationToken?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class IdentitiesService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Create owner identity\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createIdentity(requestParameters: CreateIdentityRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Identity>;\n public createIdentity(requestParameters: CreateIdentityRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Identity>>;\n public createIdentity(requestParameters: CreateIdentityRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Identity>>;\n public createIdentity(requestParameters: CreateIdentityRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createIdentity.');\n }\n const identity = requestParameters?.identity;\n if (identity === null || identity === undefined) {\n throw new Error('Required parameter identity was null or undefined when calling createIdentity.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/identities`;\n return this.httpClient.request<Identity>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: identity,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get the owner\\&#39;s identity\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getIdentity(requestParameters: GetIdentityRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Identity>;\n public getIdentity(requestParameters: GetIdentityRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Identity>>;\n public getIdentity(requestParameters: GetIdentityRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Identity>>;\n public getIdentity(requestParameters: GetIdentityRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getIdentity.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling getIdentity.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/identities/${this.configuration.encodeParam({name: \"identityID\", value: identityID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Identity>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get withdrawal methods available by owner identity\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWithdrawalMethods(requestParameters: GetWithdrawalMethodsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<GetWithdrawalMethods200Response>;\n public getWithdrawalMethods(requestParameters: GetWithdrawalMethodsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<GetWithdrawalMethods200Response>>;\n public getWithdrawalMethods(requestParameters: GetWithdrawalMethodsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<GetWithdrawalMethods200Response>>;\n public getWithdrawalMethods(requestParameters: GetWithdrawalMethodsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWithdrawalMethods.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling getWithdrawalMethods.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/identities/${this.configuration.encodeParam({name: \"identityID\", value: identityID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/withdrawal-methods`;\n return this.httpClient.request<GetWithdrawalMethods200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * List the identities of the owners\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listIdentities(requestParameters: ListIdentitiesRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<ListIdentities200Response>;\n public listIdentities(requestParameters: ListIdentitiesRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ListIdentities200Response>>;\n public listIdentities(requestParameters: ListIdentitiesRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ListIdentities200Response>>;\n public listIdentities(requestParameters: ListIdentitiesRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listIdentities.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const providerID = requestParameters?.providerID;\n const continuationToken = requestParameters?.continuationToken;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>providerID, 'providerID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>continuationToken, 'continuationToken');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/identities`;\n return this.httpClient.request<ListIdentities200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { Provider } from '../model/provider';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface GetProviderRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the provider */\n providerID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface ListProvidersRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The residence within which the services are provided, [ISO 3166-1] country or region code (https://en.wikipedia.org/wiki/ISO_3166-1) */\n residence?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ProvidersService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Get provider details\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getProvider(requestParameters: GetProviderRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Provider>;\n public getProvider(requestParameters: GetProviderRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Provider>>;\n public getProvider(requestParameters: GetProviderRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Provider>>;\n public getProvider(requestParameters: GetProviderRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getProvider.');\n }\n const providerID = requestParameters?.providerID;\n if (providerID === null || providerID === undefined) {\n throw new Error('Required parameter providerID was null or undefined when calling getProvider.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/providers/${this.configuration.encodeParam({name: \"providerID\", value: providerID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Provider>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * List available providers\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listProviders(requestParameters: ListProvidersRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Array<Provider>>;\n public listProviders(requestParameters: ListProvidersRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<Provider>>>;\n public listProviders(requestParameters: ListProvidersRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<Provider>>>;\n public listProviders(requestParameters: ListProvidersRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listProviders.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const residence = requestParameters?.residence;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>residence, 'residence');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/providers`;\n return this.httpClient.request<Array<Provider>>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { Report } from '../model/report';\n// @ts-ignore\nimport { ReportParams } from '../model/reportParams';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface CreateReportRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** Report generation options */\n reportParams: ReportParams;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n}\n\nexport interface GetReportRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** The report identifier */\n reportID: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n}\n\nexport interface GetReportsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** Start of the time period */\n fromTime: string;\n /** End of the time period */\n toTime: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Type of reports received */\n type?: 'withdrawalRegistry';\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ReportsService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Generate a report with the specified type on the identity of the owner for the specified period of time\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createReport(requestParameters: CreateReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Report>;\n public createReport(requestParameters: CreateReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Report>>;\n public createReport(requestParameters: CreateReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Report>>;\n public createReport(requestParameters: CreateReportRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createReport.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling createReport.');\n }\n const reportParams = requestParameters?.reportParams;\n if (reportParams === null || reportParams === undefined) {\n throw new Error('Required parameter reportParams was null or undefined when calling createReport.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/identities/${this.configuration.encodeParam({name: \"identityID\", value: identityID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/reports`;\n return this.httpClient.request<Report>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: reportParams,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get a report for a given identifier\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getReport(requestParameters: GetReportRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Report>;\n public getReport(requestParameters: GetReportRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Report>>;\n public getReport(requestParameters: GetReportRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Report>>;\n public getReport(requestParameters: GetReportRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getReport.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling getReport.');\n }\n const reportID = requestParameters?.reportID;\n if (reportID === null || reportID === undefined) {\n throw new Error('Required parameter reportID was null or undefined when calling getReport.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/identities/${this.configuration.encodeParam({name: \"identityID\", value: identityID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/reports/${this.configuration.encodeParam({name: \"reportID\", value: reportID, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int64\"})}`;\n return this.httpClient.request<Report>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get a list of owner identity reports for a period\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getReports(requestParameters: GetReportsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Array<Report>>;\n public getReports(requestParameters: GetReportsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<Report>>>;\n public getReports(requestParameters: GetReportsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<Report>>>;\n public getReports(requestParameters: GetReportsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getReports.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling getReports.');\n }\n const fromTime = requestParameters?.fromTime;\n if (fromTime === null || fromTime === undefined) {\n throw new Error('Required parameter fromTime was null or undefined when calling getReports.');\n }\n const toTime = requestParameters?.toTime;\n if (toTime === null || toTime === undefined) {\n throw new Error('Required parameter toTime was null or undefined when calling getReports.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const type = requestParameters?.type;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>fromTime, 'fromTime');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>toTime, 'toTime');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>type, 'type');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/identities/${this.configuration.encodeParam({name: \"identityID\", value: identityID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/reports`;\n return this.httpClient.request<Array<Report>>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { Residence } from '../model/residence';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface GetResidenceRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** The residence within which the services are provided, [ISO 3166-1] country or region code (https://en.wikipedia.org/wiki/ISO_3166-1) */\n residence: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class ResidencesService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Get a description of the residence region\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getResidence(requestParameters: GetResidenceRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Residence>;\n public getResidence(requestParameters: GetResidenceRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Residence>>;\n public getResidence(requestParameters: GetResidenceRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Residence>>;\n public getResidence(requestParameters: GetResidenceRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getResidence.');\n }\n const residence = requestParameters?.residence;\n if (residence === null || residence === undefined) {\n throw new Error('Required parameter residence was null or undefined when calling getResidence.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/residences/${this.configuration.encodeParam({name: \"residence\", value: residence, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Residence>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { ConflictRequest } from '../model/conflictRequest';\n// @ts-ignore\nimport { InvalidOperationParameters } from '../model/invalidOperationParameters';\n// @ts-ignore\nimport { W2WTransfer } from '../model/w2WTransfer';\n// @ts-ignore\nimport { W2WTransferParameters } from '../model/w2WTransferParameters';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface CreateW2WTransferRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** Transfer creation options */\n transferParams?: W2WTransferParameters;\n}\n\nexport interface GetW2WTransferRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of transfer */\n w2wTransferID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class W2WService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Create a transfer\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createW2WTransfer(requestParameters: CreateW2WTransferRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<W2WTransfer>;\n public createW2WTransfer(requestParameters: CreateW2WTransferRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<W2WTransfer>>;\n public createW2WTransfer(requestParameters: CreateW2WTransferRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<W2WTransfer>>;\n public createW2WTransfer(requestParameters: CreateW2WTransferRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createW2WTransfer.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const transferParams = requestParameters?.transferParams;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/w2w/transfers`;\n return this.httpClient.request<W2WTransfer>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: transferParams,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get the transfer status.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getW2WTransfer(requestParameters: GetW2WTransferRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<W2WTransfer>;\n public getW2WTransfer(requestParameters: GetW2WTransferRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<W2WTransfer>>;\n public getW2WTransfer(requestParameters: GetW2WTransferRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<W2WTransfer>>;\n public getW2WTransfer(requestParameters: GetW2WTransferRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getW2WTransfer.');\n }\n const w2wTransferID = requestParameters?.w2wTransferID;\n if (w2wTransferID === null || w2wTransferID === undefined) {\n throw new Error('Required parameter w2wTransferID was null or undefined when calling getW2WTransfer.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/w2w/transfers/${this.configuration.encodeParam({name: \"w2wTransferID\", value: w2wTransferID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<W2WTransfer>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { ConflictRequest } from '../model/conflictRequest';\n// @ts-ignore\nimport { InvalidOperationParameters } from '../model/invalidOperationParameters';\n// @ts-ignore\nimport { ListWallets200Response } from '../model/listWallets200Response';\n// @ts-ignore\nimport { Wallet } from '../model/wallet';\n// @ts-ignore\nimport { WalletAccount } from '../model/walletAccount';\n// @ts-ignore\nimport { WalletGrantRequest } from '../model/walletGrantRequest';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface CreateWalletRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Data of the created wallet */\n wallet: Wallet;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWalletRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the wallet */\n walletID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWalletAccountRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the wallet */\n walletID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWalletByExternalIDRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** External wallet identifier */\n externalID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface IssueWalletGrantRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the wallet */\n walletID: string;\n /** Request for the right to manage funds on the wallet */\n request: WalletGrantRequest;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface ListWalletsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Selection limit */\n limit: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Identifier of owner\\&#39;s identity */\n identityID?: string;\n /** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */\n currencyID?: string;\n /** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */\n continuationToken?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class WalletsService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Create a new wallet\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createWallet(requestParameters: CreateWalletRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Wallet>;\n public createWallet(requestParameters: CreateWalletRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Wallet>>;\n public createWallet(requestParameters: CreateWalletRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Wallet>>;\n public createWallet(requestParameters: CreateWalletRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createWallet.');\n }\n const wallet = requestParameters?.wallet;\n if (wallet === null || wallet === undefined) {\n throw new Error('Required parameter wallet was null or undefined when calling createWallet.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/wallets`;\n return this.httpClient.request<Wallet>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: wallet,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get wallet data\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWallet(requestParameters: GetWalletRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Wallet>;\n public getWallet(requestParameters: GetWalletRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Wallet>>;\n public getWallet(requestParameters: GetWalletRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Wallet>>;\n public getWallet(requestParameters: GetWalletRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWallet.');\n }\n const walletID = requestParameters?.walletID;\n if (walletID === null || walletID === undefined) {\n throw new Error('Required parameter walletID was null or undefined when calling getWallet.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/wallets/${this.configuration.encodeParam({name: \"walletID\", value: walletID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Wallet>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get account status\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWalletAccount(requestParameters: GetWalletAccountRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<WalletAccount>;\n public getWalletAccount(requestParameters: GetWalletAccountRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<WalletAccount>>;\n public getWalletAccount(requestParameters: GetWalletAccountRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<WalletAccount>>;\n public getWalletAccount(requestParameters: GetWalletAccountRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWalletAccount.');\n }\n const walletID = requestParameters?.walletID;\n if (walletID === null || walletID === undefined) {\n throw new Error('Required parameter walletID was null or undefined when calling getWalletAccount.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/wallets/${this.configuration.encodeParam({name: \"walletID\", value: walletID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/account`;\n return this.httpClient.request<WalletAccount>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get wallet by specified external identifier\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWalletByExternalID(requestParameters: GetWalletByExternalIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Wallet>;\n public getWalletByExternalID(requestParameters: GetWalletByExternalIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Wallet>>;\n public getWalletByExternalID(requestParameters: GetWalletByExternalIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Wallet>>;\n public getWalletByExternalID(requestParameters: GetWalletByExternalIDRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWalletByExternalID.');\n }\n const externalID = requestParameters?.externalID;\n if (externalID === null || externalID === undefined) {\n throw new Error('Required parameter externalID was null or undefined when calling getWalletByExternalID.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>externalID, 'externalID');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/external/wallets`;\n return this.httpClient.request<Wallet>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Grant the right to manage funds\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public issueWalletGrant(requestParameters: IssueWalletGrantRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<WalletGrantRequest>;\n public issueWalletGrant(requestParameters: IssueWalletGrantRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<WalletGrantRequest>>;\n public issueWalletGrant(requestParameters: IssueWalletGrantRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<WalletGrantRequest>>;\n public issueWalletGrant(requestParameters: IssueWalletGrantRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling issueWalletGrant.');\n }\n const walletID = requestParameters?.walletID;\n if (walletID === null || walletID === undefined) {\n throw new Error('Required parameter walletID was null or undefined when calling issueWalletGrant.');\n }\n const request = requestParameters?.request;\n if (request === null || request === undefined) {\n throw new Error('Required parameter request was null or undefined when calling issueWalletGrant.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/wallets/${this.configuration.encodeParam({name: \"walletID\", value: walletID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/grants`;\n return this.httpClient.request<WalletGrantRequest>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: request,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * List the wallets\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listWallets(requestParameters: ListWalletsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<ListWallets200Response>;\n public listWallets(requestParameters: ListWalletsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ListWallets200Response>>;\n public listWallets(requestParameters: ListWalletsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ListWallets200Response>>;\n public listWallets(requestParameters: ListWalletsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listWallets.');\n }\n const limit = requestParameters?.limit;\n if (limit === null || limit === undefined) {\n throw new Error('Required parameter limit was null or undefined when calling listWallets.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const identityID = requestParameters?.identityID;\n const currencyID = requestParameters?.currencyID;\n const continuationToken = requestParameters?.continuationToken;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>currencyID, 'currencyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>limit, 'limit');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>continuationToken, 'continuationToken');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/wallets`;\n return this.httpClient.request<ListWallets200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { InvalidOperationParameters } from '../model/invalidOperationParameters';\n// @ts-ignore\nimport { Webhook } from '../model/webhook';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface CreateWebhookRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Parameters of the created webhook */\n webhookParams: Webhook;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface DeleteWebhookByIDRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Webhook identifier */\n webhookID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWebhookByIDRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Webhook identifier */\n webhookID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWebhooksRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class WebhooksService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Create a new webhook.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createWebhook(requestParameters: CreateWebhookRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Webhook>;\n public createWebhook(requestParameters: CreateWebhookRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Webhook>>;\n public createWebhook(requestParameters: CreateWebhookRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Webhook>>;\n public createWebhook(requestParameters: CreateWebhookRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createWebhook.');\n }\n const webhookParams = requestParameters?.webhookParams;\n if (webhookParams === null || webhookParams === undefined) {\n throw new Error('Required parameter webhookParams was null or undefined when calling createWebhook.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/webhooks`;\n return this.httpClient.request<Webhook>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: webhookParams,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Remove the specified webhook.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public deleteWebhookByID(requestParameters: DeleteWebhookByIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any>;\n public deleteWebhookByID(requestParameters: DeleteWebhookByIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<any>>;\n public deleteWebhookByID(requestParameters: DeleteWebhookByIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<any>>;\n public deleteWebhookByID(requestParameters: DeleteWebhookByIDRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling deleteWebhookByID.');\n }\n const webhookID = requestParameters?.webhookID;\n if (webhookID === null || webhookID === undefined) {\n throw new Error('Required parameter webhookID was null or undefined when calling deleteWebhookByID.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling deleteWebhookByID.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/webhooks/${this.configuration.encodeParam({name: \"webhookID\", value: webhookID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<any>('delete', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get a webhook by its identifier.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWebhookByID(requestParameters: GetWebhookByIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Webhook>;\n public getWebhookByID(requestParameters: GetWebhookByIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Webhook>>;\n public getWebhookByID(requestParameters: GetWebhookByIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Webhook>>;\n public getWebhookByID(requestParameters: GetWebhookByIDRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWebhookByID.');\n }\n const webhookID = requestParameters?.webhookID;\n if (webhookID === null || webhookID === undefined) {\n throw new Error('Required parameter webhookID was null or undefined when calling getWebhookByID.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling getWebhookByID.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/webhooks/${this.configuration.encodeParam({name: \"webhookID\", value: webhookID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Webhook>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get list of existing webhooks.\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWebhooks(requestParameters: GetWebhooksRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Array<Webhook>>;\n public getWebhooks(requestParameters: GetWebhooksRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<Webhook>>>;\n public getWebhooks(requestParameters: GetWebhooksRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<Webhook>>>;\n public getWebhooks(requestParameters: GetWebhooksRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWebhooks.');\n }\n const identityID = requestParameters?.identityID;\n if (identityID === null || identityID === undefined) {\n throw new Error('Required parameter identityID was null or undefined when calling getWebhooks.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/webhooks`;\n return this.httpClient.request<Array<Webhook>>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n/* tslint:disable:no-unused-variable member-ordering */\n\nimport { Inject, Injectable, Optional } from '@angular/core';\nimport { HttpClient, HttpHeaders, HttpParams,\n HttpResponse, HttpEvent, HttpParameterCodec, HttpContext \n } from '@angular/common/http';\nimport { CustomHttpParameterCodec } from '../encoder';\nimport { Observable } from 'rxjs';\n\n// @ts-ignore\nimport { BadRequest } from '../model/badRequest';\n// @ts-ignore\nimport { ConflictRequest } from '../model/conflictRequest';\n// @ts-ignore\nimport { Destination } from '../model/destination';\n// @ts-ignore\nimport { DestinationGrantRequest } from '../model/destinationGrantRequest';\n// @ts-ignore\nimport { InvalidOperationParameters } from '../model/invalidOperationParameters';\n// @ts-ignore\nimport { ListDestinations200Response } from '../model/listDestinations200Response';\n// @ts-ignore\nimport { ListWithdrawals200Response } from '../model/listWithdrawals200Response';\n// @ts-ignore\nimport { Withdrawal } from '../model/withdrawal';\n// @ts-ignore\nimport { WithdrawalEvent } from '../model/withdrawalEvent';\n// @ts-ignore\nimport { WithdrawalParameters } from '../model/withdrawalParameters';\n// @ts-ignore\nimport { WithdrawalQuote } from '../model/withdrawalQuote';\n// @ts-ignore\nimport { WithdrawalQuoteParams } from '../model/withdrawalQuoteParams';\n\n// @ts-ignore\nimport { BASE_PATH, COLLECTION_FORMATS } from '../variables';\nimport { Configuration } from '../configuration';\nimport { BaseService } from '../api.base.service';\n\n\nexport interface CreateDestinationRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Destination data */\n destination: Destination;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface CreateQuoteRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Quote data for withdrawal */\n withdrawalQuoteParams: WithdrawalQuoteParams;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface CreateWithdrawalRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Withdrawal data */\n withdrawal: WithdrawalParameters;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetDestinationRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the destination */\n destinationID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetDestinationByExternalIDRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** External identifier */\n externalID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWithdrawalRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the withdrawal */\n withdrawalID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWithdrawalByExternalIDRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** External identifier */\n externalID: string;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface GetWithdrawalEventsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the withdrawal */\n withdrawalID: string;\n /** Identifier of the identification procedure event. */\n eventID: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface IssueDestinationGrantRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the destination */\n destinationID: string;\n /** Request for the right to manage the destinations */\n request: DestinationGrantRequest;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n}\n\nexport interface ListDestinationsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Selection limit */\n limit: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Identifier of the owner\\&#39;s idenity */\n identityID?: string;\n /** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */\n currencyID?: string;\n /** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */\n continuationToken?: string;\n}\n\nexport interface ListWithdrawalsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Selection limit */\n limit: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The participant\\&#39;s unique identifier within the system. */\n partyID?: string;\n /** Identifier of the wallet */\n walletID?: string;\n /** Identifier of the owner\\&#39;s identity */\n identityID?: string;\n /** Identifier of the funds withdrawal */\n withdrawalID?: string;\n /** Identifier of the external\\&#39;s ID */\n externalID?: string;\n /** Identifier of the destination */\n destinationID?: string;\n status?: 'Pending' | 'Succeeded' | 'Failed';\n /** Creation date range start */\n createdAtFrom?: string;\n /** Creation date range end */\n createdAtTo?: string;\n /** Amount of monetary funds in minor units */\n amountFrom?: number;\n /** Amount of monetary funds in minor units */\n amountTo?: number;\n /** Currency, character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). */\n currencyID?: string;\n /** A token signalling that only part of the data has been transmitted in the response. To retrieve the next part, you need repeat the request to the service again, specifying the same set of conditions and the received token. If there is no token, the last piece of data is received. */\n continuationToken?: string;\n}\n\nexport interface PollWithdrawalEventsRequestParams {\n /** Unique identifier of the request to the system */\n xRequestID: string;\n /** Identifier of the withdrawal */\n withdrawalID: string;\n /** Selection limit */\n limit: number;\n /** Maximum request processing time */\n xRequestDeadline?: string;\n /** The identifier of the last known event. All events that occurred _after_ the specified one will be included in the selection. If this parameter is not specified, the selection will include events starting from the very first one. */\n eventCursor?: number;\n}\n\n\n@Injectable({\n providedIn: 'root'\n})\nexport class WithdrawalsService extends BaseService {\n\n constructor(protected httpClient: HttpClient, @Optional() @Inject(BASE_PATH) basePath: string|string[], @Optional() configuration?: Configuration) {\n super(basePath, configuration);\n }\n\n /**\n * Start a destination creation\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createDestination(requestParameters: CreateDestinationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Destination>;\n public createDestination(requestParameters: CreateDestinationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Destination>>;\n public createDestination(requestParameters: CreateDestinationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Destination>>;\n public createDestination(requestParameters: CreateDestinationRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createDestination.');\n }\n const destination = requestParameters?.destination;\n if (destination === null || destination === undefined) {\n throw new Error('Required parameter destination was null or undefined when calling createDestination.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/destinations`;\n return this.httpClient.request<Destination>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: destination,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Quote preparation\n * Fixing the exchange rate for making withdrawals with conversion\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createQuote(requestParameters: CreateQuoteRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<WithdrawalQuote>;\n public createQuote(requestParameters: CreateQuoteRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<WithdrawalQuote>>;\n public createQuote(requestParameters: CreateQuoteRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<WithdrawalQuote>>;\n public createQuote(requestParameters: CreateQuoteRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createQuote.');\n }\n const withdrawalQuoteParams = requestParameters?.withdrawalQuoteParams;\n if (withdrawalQuoteParams === null || withdrawalQuoteParams === undefined) {\n throw new Error('Required parameter withdrawalQuoteParams was null or undefined when calling createQuote.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/withdrawal-quotes`;\n return this.httpClient.request<WithdrawalQuote>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: withdrawalQuoteParams,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Create withdrawal\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public createWithdrawal(requestParameters: CreateWithdrawalRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Withdrawal>;\n public createWithdrawal(requestParameters: CreateWithdrawalRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Withdrawal>>;\n public createWithdrawal(requestParameters: CreateWithdrawalRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Withdrawal>>;\n public createWithdrawal(requestParameters: CreateWithdrawalRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling createWithdrawal.');\n }\n const withdrawal = requestParameters?.withdrawal;\n if (withdrawal === null || withdrawal === undefined) {\n throw new Error('Required parameter withdrawal was null or undefined when calling createWithdrawal.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/withdrawals`;\n return this.httpClient.request<Withdrawal>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: withdrawal,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get a specific destination\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getDestination(requestParameters: GetDestinationRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Destination>;\n public getDestination(requestParameters: GetDestinationRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Destination>>;\n public getDestination(requestParameters: GetDestinationRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Destination>>;\n public getDestination(requestParameters: GetDestinationRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getDestination.');\n }\n const destinationID = requestParameters?.destinationID;\n if (destinationID === null || destinationID === undefined) {\n throw new Error('Required parameter destinationID was null or undefined when calling getDestination.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/destinations/${this.configuration.encodeParam({name: \"destinationID\", value: destinationID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Destination>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get a destination by external identifier\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getDestinationByExternalID(requestParameters: GetDestinationByExternalIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Destination>;\n public getDestinationByExternalID(requestParameters: GetDestinationByExternalIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Destination>>;\n public getDestinationByExternalID(requestParameters: GetDestinationByExternalIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Destination>>;\n public getDestinationByExternalID(requestParameters: GetDestinationByExternalIDRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getDestinationByExternalID.');\n }\n const externalID = requestParameters?.externalID;\n if (externalID === null || externalID === undefined) {\n throw new Error('Required parameter externalID was null or undefined when calling getDestinationByExternalID.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/external-ids/destinations/${this.configuration.encodeParam({name: \"externalID\", value: externalID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Destination>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get withdrawal status\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWithdrawal(requestParameters: GetWithdrawalRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Withdrawal>;\n public getWithdrawal(requestParameters: GetWithdrawalRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Withdrawal>>;\n public getWithdrawal(requestParameters: GetWithdrawalRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Withdrawal>>;\n public getWithdrawal(requestParameters: GetWithdrawalRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWithdrawal.');\n }\n const withdrawalID = requestParameters?.withdrawalID;\n if (withdrawalID === null || withdrawalID === undefined) {\n throw new Error('Required parameter withdrawalID was null or undefined when calling getWithdrawal.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/withdrawals/${this.configuration.encodeParam({name: \"withdrawalID\", value: withdrawalID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Withdrawal>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get withdrawal status by external identifier\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWithdrawalByExternalID(requestParameters: GetWithdrawalByExternalIDRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Withdrawal>;\n public getWithdrawalByExternalID(requestParameters: GetWithdrawalByExternalIDRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Withdrawal>>;\n public getWithdrawalByExternalID(requestParameters: GetWithdrawalByExternalIDRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Withdrawal>>;\n public getWithdrawalByExternalID(requestParameters: GetWithdrawalByExternalIDRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWithdrawalByExternalID.');\n }\n const externalID = requestParameters?.externalID;\n if (externalID === null || externalID === undefined) {\n throw new Error('Required parameter externalID was null or undefined when calling getWithdrawalByExternalID.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/external-ids/withdrawals/${this.configuration.encodeParam({name: \"externalID\", value: externalID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}`;\n return this.httpClient.request<Withdrawal>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Get an event of withdrawal\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public getWithdrawalEvents(requestParameters: GetWithdrawalEventsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<WithdrawalEvent>;\n public getWithdrawalEvents(requestParameters: GetWithdrawalEventsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<WithdrawalEvent>>;\n public getWithdrawalEvents(requestParameters: GetWithdrawalEventsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<WithdrawalEvent>>;\n public getWithdrawalEvents(requestParameters: GetWithdrawalEventsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling getWithdrawalEvents.');\n }\n const withdrawalID = requestParameters?.withdrawalID;\n if (withdrawalID === null || withdrawalID === undefined) {\n throw new Error('Required parameter withdrawalID was null or undefined when calling getWithdrawalEvents.');\n }\n const eventID = requestParameters?.eventID;\n if (eventID === null || eventID === undefined) {\n throw new Error('Required parameter eventID was null or undefined when calling getWithdrawalEvents.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/withdrawals/${this.configuration.encodeParam({name: \"withdrawalID\", value: withdrawalID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/events/${this.configuration.encodeParam({name: \"eventID\", value: eventID, in: \"path\", style: \"simple\", explode: false, dataType: \"number\", dataFormat: \"int32\"})}`;\n return this.httpClient.request<WithdrawalEvent>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Grant the right to manage the destinations\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public issueDestinationGrant(requestParameters: IssueDestinationGrantRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<DestinationGrantRequest>;\n public issueDestinationGrant(requestParameters: IssueDestinationGrantRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<DestinationGrantRequest>>;\n public issueDestinationGrant(requestParameters: IssueDestinationGrantRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<DestinationGrantRequest>>;\n public issueDestinationGrant(requestParameters: IssueDestinationGrantRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling issueDestinationGrant.');\n }\n const destinationID = requestParameters?.destinationID;\n if (destinationID === null || destinationID === undefined) {\n throw new Error('Required parameter destinationID was null or undefined when calling issueDestinationGrant.');\n }\n const request = requestParameters?.request;\n if (request === null || request === undefined) {\n throw new Error('Required parameter request was null or undefined when calling issueDestinationGrant.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n // to determine the Content-Type header\n const consumes: string[] = [\n 'application/json; charset=utf-8'\n ];\n const httpContentTypeSelected: string | undefined = this.configuration.selectHeaderContentType(consumes);\n if (httpContentTypeSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Content-Type', httpContentTypeSelected);\n }\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/destinations/${this.configuration.encodeParam({name: \"destinationID\", value: destinationID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/grants`;\n return this.httpClient.request<DestinationGrantRequest>('post', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n body: request,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * List of destinations\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listDestinations(requestParameters: ListDestinationsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<ListDestinations200Response>;\n public listDestinations(requestParameters: ListDestinationsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ListDestinations200Response>>;\n public listDestinations(requestParameters: ListDestinationsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ListDestinations200Response>>;\n public listDestinations(requestParameters: ListDestinationsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listDestinations.');\n }\n const limit = requestParameters?.limit;\n if (limit === null || limit === undefined) {\n throw new Error('Required parameter limit was null or undefined when calling listDestinations.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const identityID = requestParameters?.identityID;\n const currencyID = requestParameters?.currencyID;\n const continuationToken = requestParameters?.continuationToken;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>currencyID, 'currencyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>limit, 'limit');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>continuationToken, 'continuationToken');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/destinations`;\n return this.httpClient.request<ListDestinations200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Search of withdrawals\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public listWithdrawals(requestParameters: ListWithdrawalsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<ListWithdrawals200Response>;\n public listWithdrawals(requestParameters: ListWithdrawalsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<ListWithdrawals200Response>>;\n public listWithdrawals(requestParameters: ListWithdrawalsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<ListWithdrawals200Response>>;\n public listWithdrawals(requestParameters: ListWithdrawalsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling listWithdrawals.');\n }\n const limit = requestParameters?.limit;\n if (limit === null || limit === undefined) {\n throw new Error('Required parameter limit was null or undefined when calling listWithdrawals.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const partyID = requestParameters?.partyID;\n const walletID = requestParameters?.walletID;\n const identityID = requestParameters?.identityID;\n const withdrawalID = requestParameters?.withdrawalID;\n const externalID = requestParameters?.externalID;\n const destinationID = requestParameters?.destinationID;\n const status = requestParameters?.status;\n const createdAtFrom = requestParameters?.createdAtFrom;\n const createdAtTo = requestParameters?.createdAtTo;\n const amountFrom = requestParameters?.amountFrom;\n const amountTo = requestParameters?.amountTo;\n const currencyID = requestParameters?.currencyID;\n const continuationToken = requestParameters?.continuationToken;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>partyID, 'partyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>walletID, 'walletID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>identityID, 'identityID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>withdrawalID, 'withdrawalID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>externalID, 'externalID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>destinationID, 'destinationID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>status, 'status');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtFrom, 'createdAtFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>createdAtTo, 'createdAtTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountFrom, 'amountFrom');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>amountTo, 'amountTo');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>currencyID, 'currencyID');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>limit, 'limit');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>continuationToken, 'continuationToken');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/withdrawals`;\n return this.httpClient.request<ListWithdrawals200Response>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n /**\n * Request withdrawal events\n * @param requestParameters\n * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.\n * @param reportProgress flag to report request and response progress.\n */\n public pollWithdrawalEvents(requestParameters: PollWithdrawalEventsRequestParams, observe?: 'body', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<Array<WithdrawalEvent>>;\n public pollWithdrawalEvents(requestParameters: PollWithdrawalEventsRequestParams, observe?: 'response', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpResponse<Array<WithdrawalEvent>>>;\n public pollWithdrawalEvents(requestParameters: PollWithdrawalEventsRequestParams, observe?: 'events', reportProgress?: boolean, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<HttpEvent<Array<WithdrawalEvent>>>;\n public pollWithdrawalEvents(requestParameters: PollWithdrawalEventsRequestParams, observe: any = 'body', reportProgress: boolean = false, options?: {httpHeaderAccept?: 'application/json; charset=utf-8', context?: HttpContext, transferCache?: boolean}): Observable<any> {\n const xRequestID = requestParameters?.xRequestID;\n if (xRequestID === null || xRequestID === undefined) {\n throw new Error('Required parameter xRequestID was null or undefined when calling pollWithdrawalEvents.');\n }\n const withdrawalID = requestParameters?.withdrawalID;\n if (withdrawalID === null || withdrawalID === undefined) {\n throw new Error('Required parameter withdrawalID was null or undefined when calling pollWithdrawalEvents.');\n }\n const limit = requestParameters?.limit;\n if (limit === null || limit === undefined) {\n throw new Error('Required parameter limit was null or undefined when calling pollWithdrawalEvents.');\n }\n const xRequestDeadline = requestParameters?.xRequestDeadline;\n const eventCursor = requestParameters?.eventCursor;\n\n let localVarQueryParameters = new HttpParams({encoder: this.encoder});\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>limit, 'limit');\n localVarQueryParameters = this.addToHttpParams(localVarQueryParameters,\n <any>eventCursor, 'eventCursor');\n\n let localVarHeaders = this.defaultHeaders;\n if (xRequestID !== undefined && xRequestID !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-ID', String(xRequestID));\n }\n if (xRequestDeadline !== undefined && xRequestDeadline !== null) {\n localVarHeaders = localVarHeaders.set('X-Request-Deadline', String(xRequestDeadline));\n }\n\n // authentication (bearer) required\n localVarHeaders = this.configuration.addCredentialToHeaders('bearer', 'Authorization', localVarHeaders);\n\n const localVarHttpHeaderAcceptSelected: string | undefined = options?.httpHeaderAccept ?? this.configuration.selectHeaderAccept([\n 'application/json; charset=utf-8'\n ]);\n if (localVarHttpHeaderAcceptSelected !== undefined) {\n localVarHeaders = localVarHeaders.set('Accept', localVarHttpHeaderAcceptSelected);\n }\n\n const localVarHttpContext: HttpContext = options?.context ?? new HttpContext();\n\n const localVarTransferCache: boolean = options?.transferCache ?? true;\n\n\n let responseType_: 'text' | 'json' | 'blob' = 'json';\n if (localVarHttpHeaderAcceptSelected) {\n if (localVarHttpHeaderAcceptSelected.startsWith('text')) {\n responseType_ = 'text';\n } else if (this.configuration.isJsonMime(localVarHttpHeaderAcceptSelected)) {\n responseType_ = 'json';\n } else {\n responseType_ = 'blob';\n }\n }\n\n let localVarPath = `/withdrawals/${this.configuration.encodeParam({name: \"withdrawalID\", value: withdrawalID, in: \"path\", style: \"simple\", explode: false, dataType: \"string\", dataFormat: undefined})}/events`;\n return this.httpClient.request<Array<WithdrawalEvent>>('get', `${this.configuration.basePath}${localVarPath}`,\n {\n context: localVarHttpContext,\n params: localVarQueryParameters,\n responseType: <any>responseType_,\n withCredentials: this.configuration.withCredentials,\n headers: localVarHeaders,\n observe: observe,\n transferCache: localVarTransferCache,\n reportProgress: reportProgress\n }\n );\n }\n\n}\n","export * from './currencies.service';\nimport { CurrenciesService } from './currencies.service';\nexport * from './deposits.service';\nimport { DepositsService } from './deposits.service';\nexport * from './downloads.service';\nimport { DownloadsService } from './downloads.service';\nexport * from './identities.service';\nimport { IdentitiesService } from './identities.service';\nexport * from './providers.service';\nimport { ProvidersService } from './providers.service';\nexport * from './reports.service';\nimport { ReportsService } from './reports.service';\nexport * from './residences.service';\nimport { ResidencesService } from './residences.service';\nexport * from './w2W.service';\nimport { W2WService } from './w2W.service';\nexport * from './wallets.service';\nimport { WalletsService } from './wallets.service';\nexport * from './webhooks.service';\nimport { WebhooksService } from './webhooks.service';\nexport * from './withdrawals.service';\nimport { WithdrawalsService } from './withdrawals.service';\nexport const APIS = [CurrenciesService, DepositsService, DownloadsService, IdentitiesService, ProvidersService, ReportsService, ResidencesService, W2WService, WalletsService, WebhooksService, WithdrawalsService];\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * The amount of money \n */\nexport interface Asset { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface BadRequest { \n /**\n * Error type\n */\n errorType: BadRequest.ErrorTypeEnum;\n /**\n * Name or identifier of message element containing invalid data\n */\n name?: string;\n /**\n * Explanation of why the data is invalid\n */\n description?: string;\n}\nexport namespace BadRequest {\n export type ErrorTypeEnum = 'SchemaViolated' | 'NotFound' | 'WrongType' | 'NotInRange' | 'WrongSize' | 'WrongLength' | 'WrongArray' | 'NoMatch' | 'InvalidResourceToken' | 'InvalidToken';\n export const ErrorTypeEnum = {\n SchemaViolated: 'SchemaViolated' as ErrorTypeEnum,\n NotFound: 'NotFound' as ErrorTypeEnum,\n WrongType: 'WrongType' as ErrorTypeEnum,\n NotInRange: 'NotInRange' as ErrorTypeEnum,\n WrongSize: 'WrongSize' as ErrorTypeEnum,\n WrongLength: 'WrongLength' as ErrorTypeEnum,\n WrongArray: 'WrongArray' as ErrorTypeEnum,\n NoMatch: 'NoMatch' as ErrorTypeEnum,\n InvalidResourceToken: 'InvalidResourceToken' as ErrorTypeEnum,\n InvalidToken: 'InvalidToken' as ErrorTypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface BrowserRequest { \n /**\n * Type of browser operation\n */\n requestType: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface ConflictRequest { \n /**\n * The passed value of `externalID` for which a request parameter conflict was detected\n */\n externalID?: string;\n /**\n * Identifier of the entity, created by a previous query with the specified `externalID\\'\n */\n id?: string;\n /**\n * Human-readable description of the error\n */\n message?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Contact details\n */\nexport interface ContactInfo { \n /**\n * Email address\n */\n email?: string;\n /**\n * Mobile phone number with international prefix according to [E.164](https://en.wikipedia.org/wiki/E.164). \n */\n phoneNumber?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Cryptocurrency wallet details\n */\nexport interface CryptoWallet { \n /**\n * Identifier (aka address) of a cryptocurrency wallet\n */\n id: string;\n /**\n * Cryptocurrency. The set of cryptocurrencies available for withdrawals can be found out by calling the appropriate [operation](#operation/getWithdrawalMethods). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Currency description\n */\nexport interface Currency { \n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n id: string;\n /**\n * Digital currency code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm) \n */\n numericCode: string;\n /**\n * Human readable currency name \n */\n name: string;\n /**\n * Currency unit sign \n */\n sign?: string;\n /**\n * The number of acceptable decimal places in the amount of funds, in which the number of minor monetary units can be indicated \n */\n exponent: number;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DepositAllOfBody } from './depositAllOfBody';\nimport { DepositStatusFailure } from './depositStatusFailure';\nimport { DepositAllOfFee } from './depositAllOfFee';\n\n\n/**\n * Deposit data\n */\nexport interface Deposit { \n /**\n * Status of deposit. | Meaning | Explanation | | ----------- | ------------------------------------------------ | | `Pending` | Deposit in progress | | `Succeeded` | Deposit of funds made successfully | | `Failed` | Deposit of funds ended in failure | \n */\n readonly status?: Deposit.StatusEnum;\n failure?: DepositStatusFailure;\n /**\n * Deposit identifier\n */\n readonly id: string;\n /**\n * Deposit start date and time\n */\n readonly createdAt?: string;\n /**\n * Identifier of the wallet\n */\n wallet: string;\n /**\n * Funds source identifier\n */\n source: string;\n body: DepositAllOfBody;\n fee?: DepositAllOfFee;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n /**\n * Deposit information\n */\n desc?: string;\n}\nexport namespace Deposit {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DepositAdjustmentStatusFailure } from './depositAdjustmentStatusFailure';\n\n\n/**\n * Deposit adjustment data\n */\nexport interface DepositAdjustment { \n /**\n * Deposit adjustment status. | Meaning | Explanation | | ----------- | ------------------------------------------------------- | | `Pending` | Adjustment in progress | | `Succeeded` | Adjustment completed successfully | | `Failed` | Adjustment failed | \n */\n readonly status?: DepositAdjustment.StatusEnum;\n failure?: DepositAdjustmentStatusFailure;\n /**\n * Deposit adjustment identifier\n */\n readonly id?: string;\n /**\n * Date and time the adjustment was started\n */\n readonly createdAt?: string;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n}\nexport namespace DepositAdjustment {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DepositAdjustmentStatusFailure } from './depositAdjustmentStatusFailure';\n\n\nexport interface DepositAdjustmentStatus { \n /**\n * Deposit adjustment status. | Meaning | Explanation | | ----------- | ------------------------------------------------------- | | `Pending` | Adjustment in progress | | `Succeeded` | Adjustment completed successfully | | `Failed` | Adjustment failed | \n */\n readonly status?: DepositAdjustmentStatus.StatusEnum;\n failure?: DepositAdjustmentStatusFailure;\n}\nexport namespace DepositAdjustmentStatus {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * The amount of funds received\n */\nexport interface DepositAllOfBody { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Fee amount\n */\nexport interface DepositAllOfFee { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DepositRevertAllOfBody } from './depositRevertAllOfBody';\nimport { DepositRevertStatusFailure } from './depositRevertStatusFailure';\n\n\n/**\n * Deposit revert data\n */\nexport interface DepositRevert { \n /**\n * Deposit revert status. | Meaning | Explanation | | ----------- | ------------------------------------------------------- | | `Pending` | Deposit revert in progress | | `Succeeded` | Deposit revert completed successfully | | `Failed` | Deposit revert failed | \n */\n readonly status?: DepositRevert.StatusEnum;\n failure?: DepositRevertStatusFailure;\n /**\n * Deposit revert identifier\n */\n readonly id?: string;\n /**\n * Date and time of revert start\n */\n readonly createdAt?: string;\n /**\n * Identifier of the wallet\n */\n wallet: string;\n /**\n * Funds source identifier\n */\n source: string;\n body: DepositRevertAllOfBody;\n reason?: string;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n}\nexport namespace DepositRevert {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Amount of funds\n */\nexport interface DepositRevertAllOfBody { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DepositRevertStatusFailure } from './depositRevertStatusFailure';\n\n\nexport interface DepositRevertStatus { \n /**\n * Deposit revert status. | Meaning | Explanation | | ----------- | ------------------------------------------------------- | | `Pending` | Deposit revert in progress | | `Succeeded` | Deposit revert completed successfully | | `Failed` | Deposit revert failed | \n */\n readonly status?: DepositRevertStatus.StatusEnum;\n failure?: DepositRevertStatusFailure;\n}\nexport namespace DepositRevertStatus {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DepositStatusFailure } from './depositStatusFailure';\n\n\nexport interface DepositStatus { \n /**\n * Status of deposit. | Meaning | Explanation | | ----------- | ------------------------------------------------ | | `Pending` | Deposit in progress | | `Succeeded` | Deposit of funds made successfully | | `Failed` | Deposit of funds ended in failure | \n */\n readonly status?: DepositStatus.StatusEnum;\n failure?: DepositStatusFailure;\n}\nexport namespace DepositStatus {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { DestinationAuthData } from './destinationAuthData';\nimport { DestinationResource } from './destinationResource';\n\n\n/**\n * Destination data\n */\nexport interface Destination { \n /**\n * The status of the destination. | Meaning | Explanation | | -------------- | --------------------------------------------- | | `Unauthorized` | Not authorized by the owner to withdraw funds | | `Authorized` | Authorized by the owner to withdraw funds | \n */\n readonly status?: Destination.StatusEnum;\n /**\n * > If `status` == `Authorized` Date and time until which authorization is valid \n */\n readonly validUntil?: string;\n /**\n * Destination identifier\n */\n readonly id?: string;\n /**\n * A human-readable name for the destination by which it is easily recognizable \n */\n name: string;\n /**\n * Date and time of creation of the destination of the funds\n */\n readonly createdAt?: string;\n /**\n * Is the destination blocked?\n */\n readonly isBlocked?: boolean;\n /**\n * Identifier of wallet owner\n */\n identity: string;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n resource: DestinationResource;\n additionalAuthData?: DestinationAuthData;\n /**\n * Some non-transparent for system set of data associated with this destination \n */\n metadata?: object;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n}\nexport namespace Destination {\n export type StatusEnum = 'Unauthorized' | 'Authorized';\n export const StatusEnum = {\n Unauthorized: 'Unauthorized' as StatusEnum,\n Authorized: 'Authorized' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Destination auth data to make withdrawals\n */\nexport interface DestinationAuthData { \n /**\n * The auth data type of the destination. \n */\n type: DestinationAuthData.TypeEnum;\n}\nexport namespace DestinationAuthData {\n export type TypeEnum = 'SenderReceiverDestinationAuthData';\n export const TypeEnum = {\n SenderReceiverDestinationAuthData: 'SenderReceiverDestinationAuthData' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Request for the permission to control the withdrawals to the destination\n */\nexport interface DestinationGrantRequest { \n /**\n * Token granting the permission to control the withdrawals\n */\n readonly token?: string;\n /**\n * The date and time by which the granted right is valid \n */\n validUntil: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Destination resource used to make withdrawals\n */\nexport interface DestinationResource { \n /**\n * The resource type of the destination. See [Vality Withdrawal Resource API](?api/payres/swagger.yaml). \n */\n type: DestinationResource.TypeEnum;\n}\nexport namespace DestinationResource {\n export type TypeEnum = 'BankCardDestinationResource' | 'CryptoWalletDestinationResource' | 'DigitalWalletDestinationResource';\n export const TypeEnum = {\n BankCardDestinationResource: 'BankCardDestinationResource' as TypeEnum,\n CryptoWalletDestinationResource: 'CryptoWalletDestinationResource' as TypeEnum,\n DigitalWalletDestinationResource: 'DigitalWalletDestinationResource' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface DestinationStatus { \n /**\n * The status of the destination. | Meaning | Explanation | | -------------- | --------------------------------------------- | | `Unauthorized` | Not authorized by the owner to withdraw funds | | `Authorized` | Authorized by the owner to withdraw funds | \n */\n readonly status?: DestinationStatus.StatusEnum;\n /**\n * > If `status` == `Authorized` Date and time until which authorization is valid \n */\n readonly validUntil?: string;\n}\nexport namespace DestinationStatus {\n export type StatusEnum = 'Unauthorized' | 'Authorized';\n export const StatusEnum = {\n Unauthorized: 'Unauthorized' as StatusEnum,\n Authorized: 'Authorized' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { WebhookScope } from './webhookScope';\n\n\n/**\n * A coverage area that includes events by asset destinations within a particular wallet \n */\nexport interface DestinationsTopic extends WebhookScope { \n /**\n * Set of event types of the destination, which should be notified\n */\n eventTypes: Array<DestinationsTopic.EventTypesEnum>;\n}\nexport namespace DestinationsTopic {\n export type EventTypesEnum = 'DestinationCreated' | 'DestinationUnauthorized' | 'DestinationAuthorized';\n export const EventTypesEnum = {\n DestinationCreated: 'DestinationCreated' as EventTypesEnum,\n DestinationUnauthorized: 'DestinationUnauthorized' as EventTypesEnum,\n DestinationAuthorized: 'DestinationAuthorized' as EventTypesEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Digital wallet data\n */\nexport interface DigitalWallet { \n /**\n * Digital wallet ID\n */\n id: string;\n /**\n * Name of the owner of the personal account to which the withdrawal will be made\n */\n accountName?: string;\n /**\n * National identification number of the wallet owner\n */\n accountIdentityNumber?: string;\n /**\n * Digital wallet provider. The set of providers available for making withdrawals can be found by calling corresponding [operation](#operation/getWithdrawalMethods). \n */\n provider: string;\n /**\n * A string containing authorization data for transactions on this digital wallet\n */\n token?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface FileDownload { \n /**\n * URL of the file\n */\n url: string;\n /**\n * The date and time by which the link will be valid\n */\n expiresAt: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Data of the wallet owner\n */\nexport interface Identity { \n /**\n * Identifier of wallet owner\n */\n readonly id?: string;\n /**\n * Human-readable name of the owner\\'s identity, by which he can be easily identified \n */\n name: string;\n /**\n * Date and time the owner identity was created\n */\n readonly createdAt?: string;\n /**\n * Identifier of the service provider\n */\n provider: string;\n /**\n * Is the owner\\'s identity blocked?\n */\n readonly isBlocked?: boolean;\n /**\n * Some non-transparent for system set of data associated with this identity \n */\n metadata?: object;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n /**\n * The participant\\'s unique identifier within the system.\n */\n partyID?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Invalid input data for operation\n */\nexport interface InvalidOperationParameters { \n message?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Service provider data\n */\nexport interface Provider { \n /**\n * Identifier of the service provider\n */\n id: string;\n /**\n * Human-readable name of the service provider \n */\n name: string;\n /**\n * Residences in which the provider can service \n */\n residences: Array<string>;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Transaction amount\n */\nexport interface QuoteParametersBody { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * The beneficiary\\'s resource used to make the transfers\n */\nexport interface ReceiverResource { \n /**\n * The resource type of the receiver of the funds. See [Vality Withdrawal Resource API](?api/payres/swagger.yaml). \n */\n type: ReceiverResource.TypeEnum;\n}\nexport namespace ReceiverResource {\n export type TypeEnum = 'BankCardReceiverResource';\n export const TypeEnum = {\n BankCardReceiverResource: 'BankCardReceiverResource' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Receiver resource parameters\n */\nexport interface ReceiverResourceParams { \n /**\n * The resource type of the receiver. See [Vality Withdrawal Resource API](?api/payres/swagger.yaml). \n */\n type: ReceiverResourceParams.TypeEnum;\n}\nexport namespace ReceiverResourceParams {\n export type TypeEnum = 'BankCardReceiverResourceParams';\n export const TypeEnum = {\n BankCardReceiverResourceParams: 'BankCardReceiverResourceParams' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { ReportFilesInner } from './reportFilesInner';\n\n\nexport interface Report { \n /**\n * Report identifier\n */\n id: number;\n /**\n * Date and time of creation\n */\n createdAt: string;\n /**\n * Date and time of the start of the period\n */\n fromTime: string;\n /**\n * Date and time of the end of period\n */\n toTime: string;\n /**\n * Report generation status\n */\n status: Report.StatusEnum;\n /**\n * Report type\n */\n type: Report.TypeEnum;\n files: Array<ReportFilesInner>;\n}\nexport namespace Report {\n export type StatusEnum = 'pending' | 'created' | 'canceled';\n export const StatusEnum = {\n Pending: 'pending' as StatusEnum,\n Created: 'created' as StatusEnum,\n Canceled: 'canceled' as StatusEnum\n };\n export type TypeEnum = 'withdrawalRegistry';\n export const TypeEnum = {\n WithdrawalRegistry: 'withdrawalRegistry' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface ReportFilesInner { \n /**\n * File identifier\n */\n id: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface ReportParams { \n /**\n * Type of report\n */\n reportType: ReportParams.ReportTypeEnum;\n /**\n * Start of the time period\n */\n fromTime: string;\n /**\n * End of the time period\n */\n toTime: string;\n}\nexport namespace ReportParams {\n export type ReportTypeEnum = 'withdrawalRegistry';\n export const ReportTypeEnum = {\n WithdrawalRegistry: 'withdrawalRegistry' as ReportTypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Description of the region of residence\n */\nexport interface Residence { \n /**\n * Residence symbol code by standard [ISO 3166-1](https://en.wikipedia.org/wiki/ISO_3166-1) \n */\n id: string;\n /**\n * Human-readable name of the region of residence \n */\n name: string;\n /**\n * Residence region flag \n */\n flag?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Secure bank card details\n */\nexport interface SecuredBankCard { \n /**\n * Token identifying the original card data\n */\n token: string;\n /**\n * [Identification number][1] of the card issuing bank [1]: https://en.wikipedia.org/wiki/Payment_card_number#Issuer_identification_number_(IIN) \n */\n readonly bin?: string;\n /**\n * Card last digits\n */\n readonly lastDigits?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * The sender resource used to make transfers\n */\nexport interface SenderResource { \n /**\n * The resource type of the sender of the funds. See [Vality Withdrawal Resource API](?api/payres/swagger.yaml). \n */\n type: SenderResource.TypeEnum;\n}\nexport namespace SenderResource {\n export type TypeEnum = 'BankCardSenderResource';\n export const TypeEnum = {\n BankCardSenderResource: 'BankCardSenderResource' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Fund sender resource settings\n */\nexport interface SenderResourceParams { \n /**\n * The resource type of the sender of the funds. See [Vality Withdrawal Resource API](?api/payres/swagger.yaml). \n */\n type: SenderResourceParams.TypeEnum;\n}\nexport namespace SenderResourceParams {\n export type TypeEnum = 'BankCardSenderResourceParams';\n export const TypeEnum = {\n BankCardSenderResourceParams: 'BankCardSenderResourceParams' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Detailed description of the error \n */\nexport interface SubFailure { \n /**\n * Details of the error code\n */\n code: string;\n subError?: SubFailure;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface UserInteraction { \n /**\n * Type of interaction with the user\n */\n interactionType: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface UserInteractionChange { \n /**\n * Type of change in user interaction.\n */\n changeType: UserInteractionChange.ChangeTypeEnum;\n}\nexport namespace UserInteractionChange {\n export type ChangeTypeEnum = 'UserInteractionCreated' | 'UserInteractionFinished';\n export const ChangeTypeEnum = {\n UserInteractionCreated: 'UserInteractionCreated' as ChangeTypeEnum,\n UserInteractionFinished: 'UserInteractionFinished' as ChangeTypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface UserInteractionFormInner { \n /**\n * The value of the key of the form element to be send by means of browser \n */\n key: string;\n /**\n * The template for the form element value The template is presented according to the standard [RFC6570](https://tools.ietf.org/html/rfc6570). \n */\n template: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Transfer amount\n */\nexport interface W2WTransferParametersBody { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { W2WTransferStatusFailure } from './w2WTransferStatusFailure';\n\n\nexport interface W2WTransferStatus { \n /**\n * The status of the money transfer. | Meaning | Explanation | | ----------- | ------------------------------------ | | `Pending` | Transfer in progress | | `Succeeded` | Fund transfer completed successfully | | `Failed` | Fund transfer failed | \n */\n status: W2WTransferStatus.StatusEnum;\n failure?: W2WTransferStatusFailure;\n}\nexport namespace W2WTransferStatus {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Wallet details\n */\nexport interface Wallet { \n /**\n * Identifier of the wallet\n */\n readonly id?: string;\n /**\n * Human-readable name of the wallet, by which it is easy to recognize\n */\n name: string;\n /**\n * Date and time of wallet creation\n */\n readonly createdAt?: string;\n /**\n * Is the wallet blocked?\n */\n readonly isBlocked?: boolean;\n /**\n * Identifier of wallet owner\n */\n identity: string;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n /**\n * Some non-transparent for system set of data associated with this wallet \n */\n metadata?: object;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Funds available for use. Usually equal to own funds minus the sum of all pending transactions \n */\nexport interface WalletAccountAvailable { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Own funds \n */\nexport interface WalletAccountOwn { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Amount of funds allowed for use\n */\nexport interface WalletGrantRequestAsset { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * The scope of a webhook, limiting the set of event types, for which the notifications should be sent \n */\nexport interface WebhookScope { \n /**\n * Subject of notifications\n */\n topic: WebhookScope.TopicEnum;\n}\nexport namespace WebhookScope {\n export type TopicEnum = 'WithdrawalsTopic' | 'DestinationsTopic';\n export const TopicEnum = {\n WithdrawalsTopic: 'WithdrawalsTopic' as TopicEnum,\n DestinationsTopic: 'DestinationsTopic' as TopicEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { WithdrawalStatusFailure } from './withdrawalStatusFailure';\nimport { WithdrawalAllOfBody } from './withdrawalAllOfBody';\nimport { WithdrawalAllOfQuote } from './withdrawalAllOfQuote';\nimport { DepositAllOfFee } from './depositAllOfFee';\n\n\n/**\n * Funds withdrawal data\n */\nexport interface Withdrawal { \n /**\n * Withdrawal status. | Meaning | Explanation | | ----------- | ------------------------------------ | | `Pending` | Withdrawal in progress | | `Succeeded` | Withdrawal completed successfully | | `Failed` | Withdrawal failed | \n */\n readonly status?: Withdrawal.StatusEnum;\n failure?: WithdrawalStatusFailure;\n /**\n * Identifier of funds withdrawal\n */\n readonly id?: string;\n /**\n * Date and time the withdrawal started\n */\n readonly createdAt?: string;\n /**\n * Identifier of the wallet\n */\n wallet: string;\n /**\n * Destination identifier\n */\n destination: string;\n body: WithdrawalAllOfBody;\n fee?: DepositAllOfFee;\n /**\n * Some non-transparent for system set of data associated with this withdrawal \n */\n metadata?: object;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n quote?: WithdrawalAllOfQuote;\n}\nexport namespace Withdrawal {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Amount of funds to be withdrawn\n */\nexport interface WithdrawalAllOfBody { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Quote data for withdrawal\n */\nexport interface WithdrawalAllOfQuote { \n cashFrom: object;\n cashTo: object;\n /**\n * Date and time the quote was received\n */\n readonly createdAt: string;\n /**\n * Quote expiration date and time\n */\n readonly expiresOn: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Change that occurred in the funds withdrawal process \n */\nexport interface WithdrawalEventChange { \n /**\n * The type of change that occurred\n */\n type: WithdrawalEventChange.TypeEnum;\n}\nexport namespace WithdrawalEventChange {\n export type TypeEnum = 'WithdrawalStatusChanged';\n export const TypeEnum = {\n WithdrawalStatusChanged: 'WithdrawalStatusChanged' as TypeEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\nexport interface WithdrawalMethod { \n /**\n * Withdrawal method\n */\n method: WithdrawalMethod.MethodEnum;\n}\nexport namespace WithdrawalMethod {\n export type MethodEnum = 'WithdrawalMethodBankCard' | 'WithdrawalMethodDigitalWallet' | 'WithdrawalMethodGeneric';\n export const MethodEnum = {\n WithdrawalMethodBankCard: 'WithdrawalMethodBankCard' as MethodEnum,\n WithdrawalMethodDigitalWallet: 'WithdrawalMethodDigitalWallet' as MethodEnum,\n WithdrawalMethodGeneric: 'WithdrawalMethodGeneric' as MethodEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { WithdrawalStatusFailure } from './withdrawalStatusFailure';\nimport { WithdrawalAllOfBody } from './withdrawalAllOfBody';\nimport { WithdrawalAllOfQuote } from './withdrawalAllOfQuote';\nimport { DepositAllOfFee } from './depositAllOfFee';\n\n\n/**\n * Options of generated withdrawal\n */\nexport interface WithdrawalParameters { \n /**\n * Identifier of funds withdrawal\n */\n readonly id?: string;\n /**\n * Date and time the withdrawal started\n */\n readonly createdAt?: string;\n /**\n * Identifier of the wallet\n */\n wallet: string;\n /**\n * Destination identifier\n */\n destination: string;\n body: WithdrawalAllOfBody;\n fee?: DepositAllOfFee;\n /**\n * Some non-transparent for system set of data associated with this withdrawal \n */\n metadata?: object;\n /**\n * The unique identifier of the entity on your side. When specified, will be used to ensure idempotent processing of the operation. \n */\n externalID?: string;\n quote?: WithdrawalAllOfQuote;\n /**\n * Withdrawal status. | Meaning | Explanation | | ----------- | ------------------------------------ | | `Pending` | Withdrawal in progress | | `Succeeded` | Withdrawal completed successfully | | `Failed` | Withdrawal failed | \n */\n readonly status?: WithdrawalParameters.StatusEnum;\n failure?: WithdrawalStatusFailure;\n /**\n * A token that gives the right to withdraw from the wallet to pay for the withdrawal. Must be provided if withdrawal is made at the expense of _foreign_ wallet. The owner of said wallet can [issue this right](#operation/issueWalletGrant). \n */\n walletGrant?: string;\n /**\n * A token that gives the right to withdraw. Must be provided if the withdrawal is made through a _foreign_ recipient of funds. The owner of the specified recipient can [issue this right](#operation/issueDestinationGrant). \n */\n destinationGrant?: string;\n /**\n * Quote at which funds should be withdrawn. Must be [obtained](#operation/createQuote) in advance for each individual withdrawal operation with conversion. \n */\n quoteToken?: string;\n}\nexport namespace WithdrawalParameters {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Amount of funds in source currency\n */\nexport interface WithdrawalQuoteCashFrom { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * Amount of funds in target currency\n */\nexport interface WithdrawalQuoteCashTo { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\n\n\n/**\n * The amount of funds for receiving a quote in one of the exchange currencies\n */\nexport interface WithdrawalQuoteParamsCash { \n /**\n * The amount of money in minor units, for example, in cents \n */\n amount: number;\n /**\n * Currency character code according to [ISO 4217](http://www.iso.org/iso/home/standards/currency_codes.htm). \n */\n currency: string;\n}\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { WithdrawalStatusFailure } from './withdrawalStatusFailure';\n\n\nexport interface WithdrawalStatus { \n /**\n * Withdrawal status. | Meaning | Explanation | | ----------- | ------------------------------------ | | `Pending` | Withdrawal in progress | | `Succeeded` | Withdrawal completed successfully | | `Failed` | Withdrawal failed | \n */\n readonly status?: WithdrawalStatus.StatusEnum;\n failure?: WithdrawalStatusFailure;\n}\nexport namespace WithdrawalStatus {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { WithdrawalEventChange } from './withdrawalEventChange';\nimport { WithdrawalStatusFailure } from './withdrawalStatusFailure';\n\n\n/**\n * Change of withdrawal status\n */\nexport interface WithdrawalStatusChanged extends WithdrawalEventChange { \n /**\n * Withdrawal status. | Meaning | Explanation | | ----------- | ------------------------------------ | | `Pending` | Withdrawal in progress | | `Succeeded` | Withdrawal completed successfully | | `Failed` | Withdrawal failed | \n */\n readonly status?: WithdrawalStatusChanged.StatusEnum;\n failure?: WithdrawalStatusFailure;\n}\nexport namespace WithdrawalStatusChanged {\n export type StatusEnum = 'Pending' | 'Succeeded' | 'Failed';\n export const StatusEnum = {\n Pending: 'Pending' as StatusEnum,\n Succeeded: 'Succeeded' as StatusEnum,\n Failed: 'Failed' as StatusEnum\n };\n}\n\n\n","/**\n * Vality Wallet API\n *\n * Contact: support@vality.dev\n *\n * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).\n * https://openapi-generator.tech\n * Do not edit the class manually.\n */\nimport { WebhookScope } from './webhookScope';\n\n\n/**\n * Scope that includes withdrawal events within a specific wallet \n */\nexport interface WithdrawalsTopic extends WebhookScope { \n /**\n * Identifier of the wallet\n */\n walletID?: string;\n /**\n * Set of withdrawal event types to be notified about\n */\n eventTypes: Array<WithdrawalsTopic.EventTypesEnum>;\n}\nexport namespace WithdrawalsTopic {\n export type EventTypesEnum = 'WithdrawalStarted' | 'WithdrawalSucceeded' | 'WithdrawalFailed';\n export const EventTypesEnum = {\n WithdrawalStarted: 'WithdrawalStarted' as EventTypesEnum,\n WithdrawalSucceeded: 'WithdrawalSucceeded' as EventTypesEnum,\n WithdrawalFailed: 'WithdrawalFailed' as EventTypesEnum\n };\n}\n\n\n","import { NgModule, ModuleWithProviders, SkipSelf, Optional } from '@angular/core';\nimport { Configuration } from './configuration';\nimport { HttpClient } from '@angular/common/http';\n\n\n@NgModule({\n imports: [],\n declarations: [],\n exports: [],\n providers: []\n})\nexport class ApiModule {\n public static forRoot(configurationFactory: () => Configuration): ModuleWithProviders<ApiModule> {\n return {\n ngModule: ApiModule,\n providers: [ { provide: Configuration, useFactory: configurationFactory } ]\n };\n }\n\n constructor( @Optional() @SkipSelf() parentModule: ApiModule,\n @Optional() http: HttpClient) {\n if (parentModule) {\n throw new Error('ApiModule is already loaded. Import in your base AppModule only.');\n }\n if (!http) {\n throw new Error('You need to import the HttpClientModule in your AppModule! \\n' +\n 'See also https://github.com/angular/angular/issues/20575');\n }\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i2.Configuration"],"mappings":"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"}