Skip to content

Commit

Permalink
[create-pull-request] automated change (#1099)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdyenAutomationBot committed Feb 13, 2023
1 parent b1bb3f2 commit c53647f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/typings/management/models.ts
Expand Up @@ -329,7 +329,6 @@ let enumsMap: {[index: string]: any} = {
"InstallAndroidAppDetails.TypeEnum": InstallAndroidAppDetails.TypeEnum,
"InstallAndroidCertificateDetails.TypeEnum": InstallAndroidCertificateDetails.TypeEnum,
"KlarnaInfo.RegionEnum": KlarnaInfo.RegionEnum,
"MealVoucherFRInfo.SubTypesEnum": MealVoucherFRInfo.SubTypesEnum,
"PaymentMethod.VerificationStatusEnum": PaymentMethod.VerificationStatusEnum,
"PaymentMethodResponse.TypesWithErrorsEnum": PaymentMethodResponse.TypesWithErrorsEnum,
"PaymentMethodSetupInfo.ShopperInteractionEnum": PaymentMethodSetupInfo.ShopperInteractionEnum,
Expand Down
3 changes: 2 additions & 1 deletion src/typings/transfer/transfer.ts
Expand Up @@ -38,7 +38,7 @@ export class Transfer {
*/
'paymentInstrumentId'?: string;
/**
* The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**. Possible values: * **regular**: For normal, low-value transactions. * **fast**: Faster way to transfer funds but has higher fees. Recommended for high-priority, low-value transactions. * **wire**: Fastest way to transfer funds but has the highest fees. Recommended for high-priority, high-value transactions. * **instant**: Instant way to transfer funds in [SEPA countries](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html).
* The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**. Possible values: * **regular**: For normal, low-value transactions. * **fast**: Faster way to transfer funds but has higher fees. Recommended for high-priority, low-value transactions. * **wire**: Fastest way to transfer funds but has the highest fees. Recommended for high-priority, high-value transactions. * **instant**: Instant way to transfer funds in [SEPA countries](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html) .* **crossBorder**: High value transfer to receipt in a different country.
*/
'priority'?: Transfer.PriorityEnum;
/**
Expand Down Expand Up @@ -144,6 +144,7 @@ export namespace Transfer {
Outgoing = <any> 'outgoing'
}
export enum PriorityEnum {
CrossBorder = <any> 'crossBorder',
DirectDebit = <any> 'directDebit',
Fast = <any> 'fast',
Instant = <any> 'instant',
Expand Down
3 changes: 2 additions & 1 deletion src/typings/transfer/transferInfo.ts
Expand Up @@ -34,7 +34,7 @@ export class TransferInfo {
*/
'paymentInstrumentId'?: string;
/**
* The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**. Possible values: * **regular**: For normal, low-value transactions. * **fast**: Faster way to transfer funds but has higher fees. Recommended for high-priority, low-value transactions. * **wire**: Fastest way to transfer funds but has the highest fees. Recommended for high-priority, high-value transactions. * **instant**: Instant way to transfer funds in [SEPA countries](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html).
* The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**. Possible values: * **regular**: For normal, low-value transactions. * **fast**: Faster way to transfer funds but has higher fees. Recommended for high-priority, low-value transactions. * **wire**: Fastest way to transfer funds but has the highest fees. Recommended for high-priority, high-value transactions. * **instant**: Instant way to transfer funds in [SEPA countries](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html) .* **crossBorder**: High value transfer to receipt in a different country.
*/
'priority'?: TransferInfo.PriorityEnum;
/**
Expand Down Expand Up @@ -113,6 +113,7 @@ export namespace TransferInfo {
PlatformPayment = <any> 'platformPayment'
}
export enum PriorityEnum {
CrossBorder = <any> 'crossBorder',
DirectDebit = <any> 'directDebit',
Fast = <any> 'fast',
Instant = <any> 'instant',
Expand Down

0 comments on commit c53647f

Please sign in to comment.