@channelpayments/node-sdk 1.28.2 → 1.35.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{src/apis → apis}/ChannelPaymentsApi.d.ts +12 -1
- package/dist/cjs/{src/apis → apis}/ChannelPaymentsApi.js +17 -7
- package/dist/cjs/models/AddressEntity1.d.ts +62 -0
- package/dist/cjs/models/AddressEntity1.js +63 -0
- package/dist/cjs/models/AmountRuleConditionEntity.d.ts +53 -0
- package/dist/cjs/models/AmountRuleConditionEntity.js +61 -0
- package/dist/cjs/{src/models → models}/BuyerEntity1.d.ts +9 -3
- package/dist/cjs/{src/models → models}/BuyerEntity1.js +5 -3
- package/dist/cjs/models/BuyerEntity1Address.d.ts +62 -0
- package/dist/cjs/models/BuyerEntity1Address.js +63 -0
- package/dist/cjs/models/CFeeRuleConditionEntity.d.ts +40 -0
- package/dist/cjs/models/CFeeRuleConditionEntity.js +57 -0
- package/dist/cjs/{src/models → models}/CardDetails.d.ts +6 -6
- package/dist/cjs/{src/models → models}/CardDetails.js +8 -8
- package/dist/cjs/models/CreateAmountRuleConditionDto.d.ts +44 -0
- package/dist/cjs/models/CreateAmountRuleConditionDto.js +53 -0
- package/dist/cjs/models/CreateCFeeDto.d.ts +40 -0
- package/dist/cjs/{src/models/CFeeDto.js → models/CreateCFeeDto.js} +12 -12
- package/dist/cjs/models/CreateCFeeRuleConditionDto.d.ts +32 -0
- package/dist/cjs/models/CreateCFeeRuleConditionDto.js +50 -0
- package/dist/{mjs/src → cjs}/models/CreateMerchantAccountDto.d.ts +48 -13
- package/dist/cjs/{src/models → models}/CreateMerchantAccountDto.js +41 -16
- package/dist/cjs/models/CreateMerchantAccountDtoCFee.d.ts +40 -0
- package/dist/cjs/{src/models/CreateMerchantAccountDtoCfee.js → models/CreateMerchantAccountDtoCFee.js} +12 -12
- package/dist/cjs/models/CreateMerchantAccountWithoutMerchantIdDto.d.ts +149 -0
- package/dist/cjs/models/CreateMerchantAccountWithoutMerchantIdDto.js +121 -0
- package/dist/cjs/models/CreateMerchantConnectorWithoutMerchantAccountIdDto.d.ts +62 -0
- package/dist/cjs/models/CreateMerchantConnectorWithoutMerchantAccountIdDto.js +71 -0
- package/dist/{mjs/src → cjs}/models/CreateMerchantDto.d.ts +3 -3
- package/dist/cjs/{src/models → models}/CreateMerchantDto.js +3 -3
- package/dist/cjs/models/CreateMerchantRoutingFlowDto.d.ts +47 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowDto.js +61 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleDto.d.ts +60 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleDto.js +66 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleWithoutIdDto.d.ts +54 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleWithoutIdDto.js +64 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConditions.d.ts +41 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConditions.js +53 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConnectors.d.ts +52 -0
- package/dist/cjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConnectors.js +66 -0
- package/dist/cjs/models/CreateMetadataRuleConditionDto.d.ts +49 -0
- package/dist/cjs/models/CreateMetadataRuleConditionDto.js +63 -0
- package/dist/{mjs/src → cjs}/models/CreatePaymentMethodDto.d.ts +2 -1
- package/dist/cjs/{src/models → models}/CreatePaymentMethodDto.js +3 -3
- package/dist/cjs/models/CreateRuleConditionsDto.d.ts +41 -0
- package/dist/cjs/models/CreateRuleConditionsDto.js +53 -0
- package/dist/cjs/models/CreateRuleConditionsDtoAmount.d.ts +44 -0
- package/dist/cjs/models/CreateRuleConditionsDtoAmount.js +53 -0
- package/dist/cjs/models/CreateRuleConditionsDtoCFee.d.ts +32 -0
- package/dist/cjs/models/CreateRuleConditionsDtoCFee.js +50 -0
- package/dist/cjs/models/CreateRuleConnectorsDto.d.ts +52 -0
- package/dist/cjs/models/CreateRuleConnectorsDto.js +66 -0
- package/dist/cjs/{src/models → models}/CreateTransactionDto.d.ts +4 -4
- package/dist/cjs/{src/models → models}/CreateTransactionDto.js +4 -4
- package/dist/{mjs/src → cjs}/models/CreateTransactionDtoPaymentMethod.d.ts +0 -1
- package/dist/cjs/{src/models → models}/CreateTransactionDtoPaymentMethod.js +1 -2
- package/dist/cjs/models/CreateUserDto.d.ts +65 -0
- package/dist/cjs/models/CreateUserDto.js +69 -0
- package/dist/cjs/models/MerchantAccountEntity.d.ts +172 -0
- package/dist/cjs/{src/models → models}/MerchantAccountEntity.js +63 -18
- package/dist/cjs/models/MerchantAccountEntityCFee.d.ts +40 -0
- package/dist/cjs/{src/models/MerchantAccountEntityCfee.js → models/MerchantAccountEntityCFee.js} +12 -12
- package/dist/cjs/models/MerchantConnectorEntity.d.ts +92 -0
- package/dist/cjs/models/MerchantConnectorEntity.js +86 -0
- package/dist/cjs/{src/models → models}/MerchantEntity.d.ts +6 -0
- package/dist/cjs/{src/models → models}/MerchantEntity.js +3 -0
- package/dist/cjs/models/MerchantRoutingFlowEntity.d.ts +65 -0
- package/dist/cjs/models/MerchantRoutingFlowEntity.js +70 -0
- package/dist/cjs/models/MerchantRoutingFlowRuleEntity.d.ts +78 -0
- package/dist/cjs/models/MerchantRoutingFlowRuleEntity.js +76 -0
- package/dist/cjs/models/MerchantRoutingFlowRuleEntityConditions.d.ts +41 -0
- package/dist/cjs/models/MerchantRoutingFlowRuleEntityConditions.js +53 -0
- package/dist/cjs/models/MerchantRoutingFlowRuleEntityConnectors.d.ts +52 -0
- package/dist/cjs/models/MerchantRoutingFlowRuleEntityConnectors.js +67 -0
- package/dist/cjs/models/MetadataRuleConditionEntity.d.ts +49 -0
- package/dist/cjs/models/MetadataRuleConditionEntity.js +63 -0
- package/dist/cjs/{src/models → models}/PaymentMethodDto.d.ts +0 -1
- package/dist/cjs/{src/models → models}/PaymentMethodDto.js +1 -2
- package/dist/{mjs/src → cjs}/models/PaymentMethodEntity.d.ts +11 -8
- package/dist/cjs/{src/models → models}/PaymentMethodEntity.js +10 -7
- package/dist/{mjs/src → cjs}/models/PaymentMethodEntity1.d.ts +27 -3
- package/dist/cjs/{src/models → models}/PaymentMethodEntity1.js +11 -3
- package/dist/{mjs/src → cjs}/models/PaymentMethodEntityBuyer.d.ts +9 -3
- package/dist/cjs/{src/models → models}/PaymentMethodEntityBuyer.js +5 -3
- package/dist/cjs/models/PaymentMethodEntityCardDetails.d.ts +59 -0
- package/dist/cjs/models/PaymentMethodEntityCardDetails.js +67 -0
- package/dist/cjs/models/RuleConditionsEntity.d.ts +41 -0
- package/dist/cjs/models/RuleConditionsEntity.js +53 -0
- package/dist/cjs/models/RuleConditionsEntityAmount.d.ts +53 -0
- package/dist/cjs/models/RuleConditionsEntityAmount.js +61 -0
- package/dist/cjs/models/RuleConditionsEntityCfee.d.ts +40 -0
- package/dist/cjs/models/RuleConditionsEntityCfee.js +57 -0
- package/dist/cjs/models/RuleConnectorsEntity.d.ts +52 -0
- package/dist/cjs/models/RuleConnectorsEntity.js +67 -0
- package/dist/cjs/{src/models → models}/TransactionEntity.d.ts +37 -0
- package/dist/cjs/{src/models → models}/TransactionEntity.js +22 -2
- package/dist/cjs/{src/models → models}/UpdateBuyerDto.d.ts +1 -1
- package/dist/{mjs/src → cjs}/models/UpdateCFeeDto.d.ts +4 -4
- package/dist/cjs/{src/models → models}/UpdateCFeeDto.js +4 -2
- package/dist/cjs/{src/models → models}/UpdateMerchantAccountDto.d.ts +44 -9
- package/dist/cjs/{src/models → models}/UpdateMerchantAccountDto.js +35 -10
- package/dist/cjs/models/UpdateMerchantAccountDtoCFee.d.ts +40 -0
- package/dist/cjs/models/UpdateMerchantAccountDtoCFee.js +57 -0
- package/dist/cjs/models/UpdateMerchantRoutingFlowRuleDto.d.ts +60 -0
- package/dist/cjs/models/UpdateMerchantRoutingFlowRuleDto.js +64 -0
- package/dist/cjs/models/UpdateSelfDto.d.ts +75 -0
- package/dist/cjs/models/UpdateSelfDto.js +73 -0
- package/dist/cjs/models/UpdateUserDto.d.ts +81 -0
- package/dist/cjs/models/UpdateUserDto.js +76 -0
- package/dist/cjs/models/UserEntity.d.ts +99 -0
- package/dist/cjs/models/UserEntity.js +90 -0
- package/dist/cjs/{src/models → models}/index.d.ts +38 -9
- package/dist/cjs/{src/models → models}/index.js +38 -9
- package/dist/mjs/{src/apis → apis}/ChannelPaymentsApi.d.ts +12 -1
- package/dist/mjs/{src/apis → apis}/ChannelPaymentsApi.js +17 -7
- package/dist/mjs/models/AddressEntity1.d.ts +62 -0
- package/dist/mjs/models/AddressEntity1.js +56 -0
- package/dist/mjs/models/AmountRuleConditionEntity.d.ts +53 -0
- package/dist/mjs/models/AmountRuleConditionEntity.js +54 -0
- package/dist/mjs/{src/models → models}/BuyerEntity1.d.ts +9 -3
- package/dist/mjs/{src/models → models}/BuyerEntity1.js +5 -3
- package/dist/mjs/models/BuyerEntity1Address.d.ts +62 -0
- package/dist/mjs/models/BuyerEntity1Address.js +56 -0
- package/dist/mjs/models/CFeeRuleConditionEntity.d.ts +40 -0
- package/dist/mjs/models/CFeeRuleConditionEntity.js +50 -0
- package/dist/mjs/{src/models → models}/CardDetails.d.ts +6 -6
- package/dist/mjs/{src/models → models}/CardDetails.js +7 -7
- package/dist/mjs/models/CreateAmountRuleConditionDto.d.ts +44 -0
- package/dist/mjs/models/CreateAmountRuleConditionDto.js +46 -0
- package/dist/mjs/models/CreateCFeeDto.d.ts +40 -0
- package/dist/mjs/{src/models/CFeeDto.js → models/CreateCFeeDto.js} +7 -7
- package/dist/mjs/models/CreateCFeeRuleConditionDto.d.ts +32 -0
- package/dist/mjs/models/CreateCFeeRuleConditionDto.js +43 -0
- package/dist/{cjs/src → mjs}/models/CreateMerchantAccountDto.d.ts +48 -13
- package/dist/mjs/{src/models → models}/CreateMerchantAccountDto.js +40 -15
- package/dist/mjs/models/CreateMerchantAccountDtoCFee.d.ts +40 -0
- package/dist/mjs/{src/models/CreateMerchantAccountDtoCfee.js → models/CreateMerchantAccountDtoCFee.js} +7 -7
- package/dist/mjs/models/CreateMerchantAccountWithoutMerchantIdDto.d.ts +149 -0
- package/dist/mjs/models/CreateMerchantAccountWithoutMerchantIdDto.js +114 -0
- package/dist/mjs/models/CreateMerchantConnectorWithoutMerchantAccountIdDto.d.ts +62 -0
- package/dist/mjs/models/CreateMerchantConnectorWithoutMerchantAccountIdDto.js +64 -0
- package/dist/{cjs/src → mjs}/models/CreateMerchantDto.d.ts +3 -3
- package/dist/mjs/{src/models → models}/CreateMerchantDto.js +3 -3
- package/dist/mjs/models/CreateMerchantRoutingFlowDto.d.ts +47 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowDto.js +54 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleDto.d.ts +60 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleDto.js +59 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleWithoutIdDto.d.ts +54 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleWithoutIdDto.js +57 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConditions.d.ts +41 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConditions.js +46 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConnectors.d.ts +52 -0
- package/dist/mjs/models/CreateMerchantRoutingFlowRuleWithoutIdDtoConnectors.js +59 -0
- package/dist/mjs/models/CreateMetadataRuleConditionDto.d.ts +49 -0
- package/dist/mjs/models/CreateMetadataRuleConditionDto.js +56 -0
- package/dist/{cjs/src → mjs}/models/CreatePaymentMethodDto.d.ts +2 -1
- package/dist/mjs/{src/models → models}/CreatePaymentMethodDto.js +3 -3
- package/dist/mjs/models/CreateRuleConditionsDto.d.ts +41 -0
- package/dist/mjs/models/CreateRuleConditionsDto.js +46 -0
- package/dist/mjs/models/CreateRuleConditionsDtoAmount.d.ts +44 -0
- package/dist/mjs/models/CreateRuleConditionsDtoAmount.js +46 -0
- package/dist/mjs/models/CreateRuleConditionsDtoCFee.d.ts +32 -0
- package/dist/mjs/models/CreateRuleConditionsDtoCFee.js +43 -0
- package/dist/mjs/models/CreateRuleConnectorsDto.d.ts +52 -0
- package/dist/mjs/models/CreateRuleConnectorsDto.js +59 -0
- package/dist/mjs/{src/models → models}/CreateTransactionDto.d.ts +4 -4
- package/dist/mjs/{src/models → models}/CreateTransactionDto.js +4 -4
- package/dist/{cjs/src → mjs}/models/CreateTransactionDtoPaymentMethod.d.ts +0 -1
- package/dist/mjs/{src/models → models}/CreateTransactionDtoPaymentMethod.js +1 -2
- package/dist/mjs/models/CreateUserDto.d.ts +65 -0
- package/dist/mjs/models/CreateUserDto.js +62 -0
- package/dist/mjs/models/MerchantAccountEntity.d.ts +172 -0
- package/dist/mjs/models/MerchantAccountEntity.js +135 -0
- package/dist/mjs/models/MerchantAccountEntityCFee.d.ts +40 -0
- package/dist/mjs/{src/models/MerchantAccountEntityCfee.js → models/MerchantAccountEntityCFee.js} +7 -7
- package/dist/mjs/models/MerchantConnectorEntity.d.ts +92 -0
- package/dist/mjs/models/MerchantConnectorEntity.js +79 -0
- package/dist/mjs/{src/models → models}/MerchantEntity.d.ts +6 -0
- package/dist/mjs/{src/models → models}/MerchantEntity.js +3 -0
- package/dist/mjs/models/MerchantRoutingFlowEntity.d.ts +65 -0
- package/dist/mjs/models/MerchantRoutingFlowEntity.js +63 -0
- package/dist/mjs/models/MerchantRoutingFlowRuleEntity.d.ts +78 -0
- package/dist/mjs/models/MerchantRoutingFlowRuleEntity.js +69 -0
- package/dist/mjs/models/MerchantRoutingFlowRuleEntityConditions.d.ts +41 -0
- package/dist/mjs/models/MerchantRoutingFlowRuleEntityConditions.js +46 -0
- package/dist/mjs/models/MerchantRoutingFlowRuleEntityConnectors.d.ts +52 -0
- package/dist/mjs/models/MerchantRoutingFlowRuleEntityConnectors.js +60 -0
- package/dist/mjs/models/MetadataRuleConditionEntity.d.ts +49 -0
- package/dist/mjs/models/MetadataRuleConditionEntity.js +56 -0
- package/dist/mjs/{src/models → models}/PaymentMethodDto.d.ts +0 -1
- package/dist/mjs/{src/models → models}/PaymentMethodDto.js +1 -2
- package/dist/{cjs/src → mjs}/models/PaymentMethodEntity.d.ts +11 -8
- package/dist/mjs/{src/models → models}/PaymentMethodEntity.js +10 -7
- package/dist/{cjs/src → mjs}/models/PaymentMethodEntity1.d.ts +27 -3
- package/dist/mjs/{src/models → models}/PaymentMethodEntity1.js +11 -3
- package/dist/{cjs/src → mjs}/models/PaymentMethodEntityBuyer.d.ts +9 -3
- package/dist/mjs/{src/models → models}/PaymentMethodEntityBuyer.js +5 -3
- package/dist/mjs/models/PaymentMethodEntityCardDetails.d.ts +59 -0
- package/dist/mjs/{src/models/PaymentMethodEntityDetails.js → models/PaymentMethodEntityCardDetails.js} +13 -13
- package/dist/mjs/models/RuleConditionsEntity.d.ts +41 -0
- package/dist/mjs/models/RuleConditionsEntity.js +46 -0
- package/dist/mjs/models/RuleConditionsEntityAmount.d.ts +53 -0
- package/dist/mjs/models/RuleConditionsEntityAmount.js +54 -0
- package/dist/mjs/models/RuleConditionsEntityCfee.d.ts +40 -0
- package/dist/mjs/models/RuleConditionsEntityCfee.js +50 -0
- package/dist/mjs/models/RuleConnectorsEntity.d.ts +52 -0
- package/dist/mjs/models/RuleConnectorsEntity.js +60 -0
- package/dist/mjs/{src/models → models}/TransactionEntity.d.ts +37 -0
- package/dist/mjs/{src/models → models}/TransactionEntity.js +22 -2
- package/dist/mjs/{src/models → models}/UpdateBuyerDto.d.ts +1 -1
- package/dist/{cjs/src → mjs}/models/UpdateCFeeDto.d.ts +4 -4
- package/dist/mjs/{src/models → models}/UpdateCFeeDto.js +5 -3
- package/dist/mjs/{src/models → models}/UpdateMerchantAccountDto.d.ts +44 -9
- package/dist/mjs/{src/models → models}/UpdateMerchantAccountDto.js +34 -9
- package/dist/mjs/models/UpdateMerchantAccountDtoCFee.d.ts +40 -0
- package/dist/mjs/models/UpdateMerchantAccountDtoCFee.js +50 -0
- package/dist/mjs/models/UpdateMerchantRoutingFlowRuleDto.d.ts +60 -0
- package/dist/mjs/models/UpdateMerchantRoutingFlowRuleDto.js +57 -0
- package/dist/mjs/models/UpdateSelfDto.d.ts +75 -0
- package/dist/mjs/models/UpdateSelfDto.js +66 -0
- package/dist/mjs/models/UpdateUserDto.d.ts +81 -0
- package/dist/mjs/models/UpdateUserDto.js +69 -0
- package/dist/mjs/models/UserEntity.d.ts +99 -0
- package/dist/mjs/models/UserEntity.js +83 -0
- package/dist/mjs/{src/models → models}/index.d.ts +38 -9
- package/dist/mjs/{src/models → models}/index.js +38 -9
- package/package.json +1 -1
- package/dist/cjs/src/models/CFeeDto.d.ts +0 -40
- package/dist/cjs/src/models/CreateMerchantAccountDtoCfee.d.ts +0 -40
- package/dist/cjs/src/models/CreateMerchantAccountDtoGateways.d.ts +0 -41
- package/dist/cjs/src/models/CreateMerchantAccountDtoGateways.js +0 -58
- package/dist/cjs/src/models/CreateMerchantAccountsDto.d.ts +0 -114
- package/dist/cjs/src/models/CreateMerchantAccountsDto.js +0 -96
- package/dist/cjs/src/models/CreateMerchantGateway.d.ts +0 -41
- package/dist/cjs/src/models/CreateMerchantGateway.js +0 -58
- package/dist/cjs/src/models/MerchantAccountEntity.d.ts +0 -108
- package/dist/cjs/src/models/MerchantAccountEntityCfee.d.ts +0 -40
- package/dist/cjs/src/models/MerchantGatewayEntity.d.ts +0 -59
- package/dist/cjs/src/models/MerchantGatewayEntity.js +0 -67
- package/dist/cjs/src/models/PaymentMethodEntityDetails.d.ts +0 -59
- package/dist/cjs/src/models/PaymentMethodEntityDetails.js +0 -67
- package/dist/cjs/src/models/UpdateMerchantAccountDtoCfee.d.ts +0 -40
- package/dist/cjs/src/models/UpdateMerchantAccountDtoCfee.js +0 -55
- package/dist/cjs/test.d.ts +0 -1
- package/dist/cjs/test.js +0 -57
- package/dist/mjs/src/models/CFeeDto.d.ts +0 -40
- package/dist/mjs/src/models/CreateMerchantAccountDtoCfee.d.ts +0 -40
- package/dist/mjs/src/models/CreateMerchantAccountDtoGateways.d.ts +0 -41
- package/dist/mjs/src/models/CreateMerchantAccountDtoGateways.js +0 -51
- package/dist/mjs/src/models/CreateMerchantAccountsDto.d.ts +0 -114
- package/dist/mjs/src/models/CreateMerchantAccountsDto.js +0 -89
- package/dist/mjs/src/models/CreateMerchantGateway.d.ts +0 -41
- package/dist/mjs/src/models/CreateMerchantGateway.js +0 -51
- package/dist/mjs/src/models/MerchantAccountEntity.d.ts +0 -108
- package/dist/mjs/src/models/MerchantAccountEntity.js +0 -90
- package/dist/mjs/src/models/MerchantAccountEntityCfee.d.ts +0 -40
- package/dist/mjs/src/models/MerchantGatewayEntity.d.ts +0 -59
- package/dist/mjs/src/models/MerchantGatewayEntity.js +0 -60
- package/dist/mjs/src/models/PaymentMethodEntityDetails.d.ts +0 -59
- package/dist/mjs/src/models/UpdateMerchantAccountDtoCfee.d.ts +0 -40
- package/dist/mjs/src/models/UpdateMerchantAccountDtoCfee.js +0 -48
- package/dist/mjs/test.d.ts +0 -1
- package/dist/mjs/test.js +0 -23
- /package/dist/cjs/{src/apis → apis}/index.d.ts +0 -0
- /package/dist/cjs/{src/apis → apis}/index.js +0 -0
- /package/dist/cjs/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/cjs/{src/index.js → index.js} +0 -0
- /package/dist/cjs/{src/models → models}/AddressDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/AddressDto.js +0 -0
- /package/dist/cjs/{src/models → models}/AddressEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/AddressEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/BuyerAddressEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/BuyerAddressEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/BuyerEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/BuyerEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/BuyerEntityAddress.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/BuyerEntityAddress.js +0 -0
- /package/dist/cjs/{src/models → models}/BuyersSearchEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/BuyersSearchEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/CFeeEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/CFeeEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/CaptureTransactionDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/CaptureTransactionDto.js +0 -0
- /package/dist/cjs/{src/models → models}/CreateBuyerDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/CreateBuyerDto.js +0 -0
- /package/dist/cjs/{src/models → models}/CreateBuyerDtoAddress.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/CreateBuyerDtoAddress.js +0 -0
- /package/dist/cjs/{src/models → models}/CreateMerchantAddressDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/CreateMerchantAddressDto.js +0 -0
- /package/dist/cjs/{src/models → models}/CreateMerchantCredentialsDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/CreateMerchantCredentialsDto.js +0 -0
- /package/dist/cjs/{src/models → models}/CreateMerchantDtoAddress.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/CreateMerchantDtoAddress.js +0 -0
- /package/dist/cjs/{src/models → models}/ErrorEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/ErrorEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/MerchantAddressEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/MerchantAddressEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/MerchantCredentialsEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/MerchantCredentialsEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/MerchantEntityAddress.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/MerchantEntityAddress.js +0 -0
- /package/dist/cjs/{src/models → models}/PaymentMethodsSearchEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/PaymentMethodsSearchEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/PaymentsBuyerEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/PaymentsBuyerEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/RefundTransactionDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/RefundTransactionDto.js +0 -0
- /package/dist/cjs/{src/models → models}/TransactionRefundEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/TransactionRefundEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/TransactionRefundsSearchEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/TransactionRefundsSearchEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/TransactionsSearchEntity.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/TransactionsSearchEntity.js +0 -0
- /package/dist/cjs/{src/models → models}/UpdateAddressDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/UpdateAddressDto.js +0 -0
- /package/dist/cjs/{src/models → models}/UpdateBuyerDto.js +0 -0
- /package/dist/cjs/{src/models → models}/UpdateBuyerDtoAddress.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/UpdateBuyerDtoAddress.js +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantAddressDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantAddressDto.js +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantCredentialsDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantCredentialsDto.js +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantDto.js +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantDtoAddress.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/UpdateMerchantDtoAddress.js +0 -0
- /package/dist/cjs/{src/models → models}/ValidateMerchantCredentialsDto.d.ts +0 -0
- /package/dist/cjs/{src/models → models}/ValidateMerchantCredentialsDto.js +0 -0
- /package/dist/cjs/{src/runtime.d.ts → runtime.d.ts} +0 -0
- /package/dist/cjs/{src/runtime.js → runtime.js} +0 -0
- /package/dist/mjs/{src/apis → apis}/index.d.ts +0 -0
- /package/dist/mjs/{src/apis → apis}/index.js +0 -0
- /package/dist/mjs/{src/index.d.ts → index.d.ts} +0 -0
- /package/dist/mjs/{src/index.js → index.js} +0 -0
- /package/dist/mjs/{src/models → models}/AddressDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/AddressDto.js +0 -0
- /package/dist/mjs/{src/models → models}/AddressEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/AddressEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/BuyerAddressEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/BuyerAddressEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/BuyerEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/BuyerEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/BuyerEntityAddress.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/BuyerEntityAddress.js +0 -0
- /package/dist/mjs/{src/models → models}/BuyersSearchEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/BuyersSearchEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/CFeeEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/CFeeEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/CaptureTransactionDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/CaptureTransactionDto.js +0 -0
- /package/dist/mjs/{src/models → models}/CreateBuyerDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/CreateBuyerDto.js +0 -0
- /package/dist/mjs/{src/models → models}/CreateBuyerDtoAddress.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/CreateBuyerDtoAddress.js +0 -0
- /package/dist/mjs/{src/models → models}/CreateMerchantAddressDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/CreateMerchantAddressDto.js +0 -0
- /package/dist/mjs/{src/models → models}/CreateMerchantCredentialsDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/CreateMerchantCredentialsDto.js +0 -0
- /package/dist/mjs/{src/models → models}/CreateMerchantDtoAddress.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/CreateMerchantDtoAddress.js +0 -0
- /package/dist/mjs/{src/models → models}/ErrorEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/ErrorEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/MerchantAddressEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/MerchantAddressEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/MerchantCredentialsEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/MerchantCredentialsEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/MerchantEntityAddress.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/MerchantEntityAddress.js +0 -0
- /package/dist/mjs/{src/models → models}/PaymentMethodsSearchEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/PaymentMethodsSearchEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/PaymentsBuyerEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/PaymentsBuyerEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/RefundTransactionDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/RefundTransactionDto.js +0 -0
- /package/dist/mjs/{src/models → models}/TransactionRefundEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/TransactionRefundEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/TransactionRefundsSearchEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/TransactionRefundsSearchEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/TransactionsSearchEntity.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/TransactionsSearchEntity.js +0 -0
- /package/dist/mjs/{src/models → models}/UpdateAddressDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/UpdateAddressDto.js +0 -0
- /package/dist/mjs/{src/models → models}/UpdateBuyerDto.js +0 -0
- /package/dist/mjs/{src/models → models}/UpdateBuyerDtoAddress.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/UpdateBuyerDtoAddress.js +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantAddressDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantAddressDto.js +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantCredentialsDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantCredentialsDto.js +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantDto.js +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantDtoAddress.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/UpdateMerchantDtoAddress.js +0 -0
- /package/dist/mjs/{src/models → models}/ValidateMerchantCredentialsDto.d.ts +0 -0
- /package/dist/mjs/{src/models → models}/ValidateMerchantCredentialsDto.js +0 -0
- /package/dist/mjs/{src/runtime.d.ts → runtime.d.ts} +0 -0
- /package/dist/mjs/{src/runtime.js → runtime.js} +0 -0
|
@@ -1,44 +1,69 @@
|
|
|
1
1
|
export * from './AddressDto';
|
|
2
2
|
export * from './AddressEntity';
|
|
3
|
+
export * from './AddressEntity1';
|
|
4
|
+
export * from './AmountRuleConditionEntity';
|
|
3
5
|
export * from './BuyerAddressEntity';
|
|
4
6
|
export * from './BuyerEntity';
|
|
5
7
|
export * from './BuyerEntity1';
|
|
8
|
+
export * from './BuyerEntity1Address';
|
|
6
9
|
export * from './BuyerEntityAddress';
|
|
7
10
|
export * from './BuyersSearchEntity';
|
|
8
|
-
export * from './CFeeDto';
|
|
9
11
|
export * from './CFeeEntity';
|
|
12
|
+
export * from './CFeeRuleConditionEntity';
|
|
10
13
|
export * from './CaptureTransactionDto';
|
|
11
14
|
export * from './CardDetails';
|
|
15
|
+
export * from './CreateAmountRuleConditionDto';
|
|
12
16
|
export * from './CreateBuyerDto';
|
|
13
17
|
export * from './CreateBuyerDtoAddress';
|
|
18
|
+
export * from './CreateCFeeDto';
|
|
19
|
+
export * from './CreateCFeeRuleConditionDto';
|
|
14
20
|
export * from './CreateMerchantAccountDto';
|
|
15
|
-
export * from './
|
|
16
|
-
export * from './
|
|
17
|
-
export * from './CreateMerchantAccountsDto';
|
|
21
|
+
export * from './CreateMerchantAccountDtoCFee';
|
|
22
|
+
export * from './CreateMerchantAccountWithoutMerchantIdDto';
|
|
18
23
|
export * from './CreateMerchantAddressDto';
|
|
24
|
+
export * from './CreateMerchantConnectorWithoutMerchantAccountIdDto';
|
|
19
25
|
export * from './CreateMerchantCredentialsDto';
|
|
20
26
|
export * from './CreateMerchantDto';
|
|
21
27
|
export * from './CreateMerchantDtoAddress';
|
|
22
|
-
export * from './
|
|
28
|
+
export * from './CreateMerchantRoutingFlowDto';
|
|
29
|
+
export * from './CreateMerchantRoutingFlowRuleDto';
|
|
30
|
+
export * from './CreateMerchantRoutingFlowRuleWithoutIdDto';
|
|
31
|
+
export * from './CreateMerchantRoutingFlowRuleWithoutIdDtoConditions';
|
|
32
|
+
export * from './CreateMerchantRoutingFlowRuleWithoutIdDtoConnectors';
|
|
33
|
+
export * from './CreateMetadataRuleConditionDto';
|
|
23
34
|
export * from './CreatePaymentMethodDto';
|
|
35
|
+
export * from './CreateRuleConditionsDto';
|
|
36
|
+
export * from './CreateRuleConditionsDtoAmount';
|
|
37
|
+
export * from './CreateRuleConditionsDtoCFee';
|
|
38
|
+
export * from './CreateRuleConnectorsDto';
|
|
24
39
|
export * from './CreateTransactionDto';
|
|
25
40
|
export * from './CreateTransactionDtoPaymentMethod';
|
|
41
|
+
export * from './CreateUserDto';
|
|
26
42
|
export * from './ErrorEntity';
|
|
27
43
|
export * from './MerchantAccountEntity';
|
|
28
|
-
export * from './
|
|
44
|
+
export * from './MerchantAccountEntityCFee';
|
|
29
45
|
export * from './MerchantAddressEntity';
|
|
46
|
+
export * from './MerchantConnectorEntity';
|
|
30
47
|
export * from './MerchantCredentialsEntity';
|
|
31
48
|
export * from './MerchantEntity';
|
|
32
49
|
export * from './MerchantEntityAddress';
|
|
33
|
-
export * from './
|
|
50
|
+
export * from './MerchantRoutingFlowEntity';
|
|
51
|
+
export * from './MerchantRoutingFlowRuleEntity';
|
|
52
|
+
export * from './MerchantRoutingFlowRuleEntityConditions';
|
|
53
|
+
export * from './MerchantRoutingFlowRuleEntityConnectors';
|
|
54
|
+
export * from './MetadataRuleConditionEntity';
|
|
34
55
|
export * from './PaymentMethodDto';
|
|
35
56
|
export * from './PaymentMethodEntity';
|
|
36
57
|
export * from './PaymentMethodEntity1';
|
|
37
58
|
export * from './PaymentMethodEntityBuyer';
|
|
38
|
-
export * from './
|
|
59
|
+
export * from './PaymentMethodEntityCardDetails';
|
|
39
60
|
export * from './PaymentMethodsSearchEntity';
|
|
40
61
|
export * from './PaymentsBuyerEntity';
|
|
41
62
|
export * from './RefundTransactionDto';
|
|
63
|
+
export * from './RuleConditionsEntity';
|
|
64
|
+
export * from './RuleConditionsEntityAmount';
|
|
65
|
+
export * from './RuleConditionsEntityCfee';
|
|
66
|
+
export * from './RuleConnectorsEntity';
|
|
42
67
|
export * from './TransactionEntity';
|
|
43
68
|
export * from './TransactionRefundEntity';
|
|
44
69
|
export * from './TransactionRefundsSearchEntity';
|
|
@@ -48,9 +73,13 @@ export * from './UpdateBuyerDto';
|
|
|
48
73
|
export * from './UpdateBuyerDtoAddress';
|
|
49
74
|
export * from './UpdateCFeeDto';
|
|
50
75
|
export * from './UpdateMerchantAccountDto';
|
|
51
|
-
export * from './
|
|
76
|
+
export * from './UpdateMerchantAccountDtoCFee';
|
|
52
77
|
export * from './UpdateMerchantAddressDto';
|
|
53
78
|
export * from './UpdateMerchantCredentialsDto';
|
|
54
79
|
export * from './UpdateMerchantDto';
|
|
55
80
|
export * from './UpdateMerchantDtoAddress';
|
|
81
|
+
export * from './UpdateMerchantRoutingFlowRuleDto';
|
|
82
|
+
export * from './UpdateSelfDto';
|
|
83
|
+
export * from './UpdateUserDto';
|
|
84
|
+
export * from './UserEntity';
|
|
56
85
|
export * from './ValidateMerchantCredentialsDto';
|
|
@@ -2,45 +2,70 @@
|
|
|
2
2
|
/* eslint-disable */
|
|
3
3
|
export * from './AddressDto';
|
|
4
4
|
export * from './AddressEntity';
|
|
5
|
+
export * from './AddressEntity1';
|
|
6
|
+
export * from './AmountRuleConditionEntity';
|
|
5
7
|
export * from './BuyerAddressEntity';
|
|
6
8
|
export * from './BuyerEntity';
|
|
7
9
|
export * from './BuyerEntity1';
|
|
10
|
+
export * from './BuyerEntity1Address';
|
|
8
11
|
export * from './BuyerEntityAddress';
|
|
9
12
|
export * from './BuyersSearchEntity';
|
|
10
|
-
export * from './CFeeDto';
|
|
11
13
|
export * from './CFeeEntity';
|
|
14
|
+
export * from './CFeeRuleConditionEntity';
|
|
12
15
|
export * from './CaptureTransactionDto';
|
|
13
16
|
export * from './CardDetails';
|
|
17
|
+
export * from './CreateAmountRuleConditionDto';
|
|
14
18
|
export * from './CreateBuyerDto';
|
|
15
19
|
export * from './CreateBuyerDtoAddress';
|
|
20
|
+
export * from './CreateCFeeDto';
|
|
21
|
+
export * from './CreateCFeeRuleConditionDto';
|
|
16
22
|
export * from './CreateMerchantAccountDto';
|
|
17
|
-
export * from './
|
|
18
|
-
export * from './
|
|
19
|
-
export * from './CreateMerchantAccountsDto';
|
|
23
|
+
export * from './CreateMerchantAccountDtoCFee';
|
|
24
|
+
export * from './CreateMerchantAccountWithoutMerchantIdDto';
|
|
20
25
|
export * from './CreateMerchantAddressDto';
|
|
26
|
+
export * from './CreateMerchantConnectorWithoutMerchantAccountIdDto';
|
|
21
27
|
export * from './CreateMerchantCredentialsDto';
|
|
22
28
|
export * from './CreateMerchantDto';
|
|
23
29
|
export * from './CreateMerchantDtoAddress';
|
|
24
|
-
export * from './
|
|
30
|
+
export * from './CreateMerchantRoutingFlowDto';
|
|
31
|
+
export * from './CreateMerchantRoutingFlowRuleDto';
|
|
32
|
+
export * from './CreateMerchantRoutingFlowRuleWithoutIdDto';
|
|
33
|
+
export * from './CreateMerchantRoutingFlowRuleWithoutIdDtoConditions';
|
|
34
|
+
export * from './CreateMerchantRoutingFlowRuleWithoutIdDtoConnectors';
|
|
35
|
+
export * from './CreateMetadataRuleConditionDto';
|
|
25
36
|
export * from './CreatePaymentMethodDto';
|
|
37
|
+
export * from './CreateRuleConditionsDto';
|
|
38
|
+
export * from './CreateRuleConditionsDtoAmount';
|
|
39
|
+
export * from './CreateRuleConditionsDtoCFee';
|
|
40
|
+
export * from './CreateRuleConnectorsDto';
|
|
26
41
|
export * from './CreateTransactionDto';
|
|
27
42
|
export * from './CreateTransactionDtoPaymentMethod';
|
|
43
|
+
export * from './CreateUserDto';
|
|
28
44
|
export * from './ErrorEntity';
|
|
29
45
|
export * from './MerchantAccountEntity';
|
|
30
|
-
export * from './
|
|
46
|
+
export * from './MerchantAccountEntityCFee';
|
|
31
47
|
export * from './MerchantAddressEntity';
|
|
48
|
+
export * from './MerchantConnectorEntity';
|
|
32
49
|
export * from './MerchantCredentialsEntity';
|
|
33
50
|
export * from './MerchantEntity';
|
|
34
51
|
export * from './MerchantEntityAddress';
|
|
35
|
-
export * from './
|
|
52
|
+
export * from './MerchantRoutingFlowEntity';
|
|
53
|
+
export * from './MerchantRoutingFlowRuleEntity';
|
|
54
|
+
export * from './MerchantRoutingFlowRuleEntityConditions';
|
|
55
|
+
export * from './MerchantRoutingFlowRuleEntityConnectors';
|
|
56
|
+
export * from './MetadataRuleConditionEntity';
|
|
36
57
|
export * from './PaymentMethodDto';
|
|
37
58
|
export * from './PaymentMethodEntity';
|
|
38
59
|
export * from './PaymentMethodEntity1';
|
|
39
60
|
export * from './PaymentMethodEntityBuyer';
|
|
40
|
-
export * from './
|
|
61
|
+
export * from './PaymentMethodEntityCardDetails';
|
|
41
62
|
export * from './PaymentMethodsSearchEntity';
|
|
42
63
|
export * from './PaymentsBuyerEntity';
|
|
43
64
|
export * from './RefundTransactionDto';
|
|
65
|
+
export * from './RuleConditionsEntity';
|
|
66
|
+
export * from './RuleConditionsEntityAmount';
|
|
67
|
+
export * from './RuleConditionsEntityCfee';
|
|
68
|
+
export * from './RuleConnectorsEntity';
|
|
44
69
|
export * from './TransactionEntity';
|
|
45
70
|
export * from './TransactionRefundEntity';
|
|
46
71
|
export * from './TransactionRefundsSearchEntity';
|
|
@@ -50,9 +75,13 @@ export * from './UpdateBuyerDto';
|
|
|
50
75
|
export * from './UpdateBuyerDtoAddress';
|
|
51
76
|
export * from './UpdateCFeeDto';
|
|
52
77
|
export * from './UpdateMerchantAccountDto';
|
|
53
|
-
export * from './
|
|
78
|
+
export * from './UpdateMerchantAccountDtoCFee';
|
|
54
79
|
export * from './UpdateMerchantAddressDto';
|
|
55
80
|
export * from './UpdateMerchantCredentialsDto';
|
|
56
81
|
export * from './UpdateMerchantDto';
|
|
57
82
|
export * from './UpdateMerchantDtoAddress';
|
|
83
|
+
export * from './UpdateMerchantRoutingFlowRuleDto';
|
|
84
|
+
export * from './UpdateSelfDto';
|
|
85
|
+
export * from './UpdateUserDto';
|
|
86
|
+
export * from './UserEntity';
|
|
58
87
|
export * from './ValidateMerchantCredentialsDto';
|
package/package.json
CHANGED
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Channel Payments API
|
|
3
|
-
*
|
|
4
|
-
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
*
|
|
9
|
-
* @export
|
|
10
|
-
* @interface CFeeDto
|
|
11
|
-
*/
|
|
12
|
-
export interface CFeeDto {
|
|
13
|
-
/**
|
|
14
|
-
* The type of the CFee
|
|
15
|
-
* @type {string}
|
|
16
|
-
* @memberof CFeeDto
|
|
17
|
-
*/
|
|
18
|
-
type: CFeeDtoTypeEnum;
|
|
19
|
-
/**
|
|
20
|
-
* The rate of the CFee as an integer
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof CFeeDto
|
|
23
|
-
*/
|
|
24
|
-
rate: number;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* @export
|
|
28
|
-
*/
|
|
29
|
-
export declare const CFeeDtoTypeEnum: {
|
|
30
|
-
readonly Percentage: "PERCENTAGE";
|
|
31
|
-
readonly Fixed: "FIXED";
|
|
32
|
-
};
|
|
33
|
-
export type CFeeDtoTypeEnum = typeof CFeeDtoTypeEnum[keyof typeof CFeeDtoTypeEnum];
|
|
34
|
-
/**
|
|
35
|
-
* Check if a given object implements the CFeeDto interface.
|
|
36
|
-
*/
|
|
37
|
-
export declare function instanceOfCFeeDto(value: object): boolean;
|
|
38
|
-
export declare function CFeeDtoFromJSON(json: any): CFeeDto;
|
|
39
|
-
export declare function CFeeDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CFeeDto;
|
|
40
|
-
export declare function CFeeDtoToJSON(value?: CFeeDto | null): any;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Channel Payments API
|
|
3
|
-
*
|
|
4
|
-
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* The CFee details
|
|
9
|
-
* @export
|
|
10
|
-
* @interface CreateMerchantAccountDtoCfee
|
|
11
|
-
*/
|
|
12
|
-
export interface CreateMerchantAccountDtoCfee {
|
|
13
|
-
/**
|
|
14
|
-
* The type of the CFee
|
|
15
|
-
* @type {string}
|
|
16
|
-
* @memberof CreateMerchantAccountDtoCfee
|
|
17
|
-
*/
|
|
18
|
-
type: CreateMerchantAccountDtoCfeeTypeEnum;
|
|
19
|
-
/**
|
|
20
|
-
* The rate of the CFee as an integer
|
|
21
|
-
* @type {number}
|
|
22
|
-
* @memberof CreateMerchantAccountDtoCfee
|
|
23
|
-
*/
|
|
24
|
-
rate: number;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* @export
|
|
28
|
-
*/
|
|
29
|
-
export declare const CreateMerchantAccountDtoCfeeTypeEnum: {
|
|
30
|
-
readonly Percentage: "PERCENTAGE";
|
|
31
|
-
readonly Fixed: "FIXED";
|
|
32
|
-
};
|
|
33
|
-
export type CreateMerchantAccountDtoCfeeTypeEnum = typeof CreateMerchantAccountDtoCfeeTypeEnum[keyof typeof CreateMerchantAccountDtoCfeeTypeEnum];
|
|
34
|
-
/**
|
|
35
|
-
* Check if a given object implements the CreateMerchantAccountDtoCfee interface.
|
|
36
|
-
*/
|
|
37
|
-
export declare function instanceOfCreateMerchantAccountDtoCfee(value: object): boolean;
|
|
38
|
-
export declare function CreateMerchantAccountDtoCfeeFromJSON(json: any): CreateMerchantAccountDtoCfee;
|
|
39
|
-
export declare function CreateMerchantAccountDtoCfeeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMerchantAccountDtoCfee;
|
|
40
|
-
export declare function CreateMerchantAccountDtoCfeeToJSON(value?: CreateMerchantAccountDtoCfee | null): any;
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Channel Payments API
|
|
3
|
-
*
|
|
4
|
-
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
* The list of merchant gateways
|
|
9
|
-
* @export
|
|
10
|
-
* @interface CreateMerchantAccountDtoGateways
|
|
11
|
-
*/
|
|
12
|
-
export interface CreateMerchantAccountDtoGateways {
|
|
13
|
-
/**
|
|
14
|
-
* The name of the gateway
|
|
15
|
-
* @type {string}
|
|
16
|
-
* @memberof CreateMerchantAccountDtoGateways
|
|
17
|
-
*/
|
|
18
|
-
name: CreateMerchantAccountDtoGatewaysNameEnum;
|
|
19
|
-
/**
|
|
20
|
-
* The ID issued by the gateway
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof CreateMerchantAccountDtoGateways
|
|
23
|
-
*/
|
|
24
|
-
issuedGatewayId: string;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* @export
|
|
28
|
-
*/
|
|
29
|
-
export declare const CreateMerchantAccountDtoGatewaysNameEnum: {
|
|
30
|
-
readonly Epay: "EPAY";
|
|
31
|
-
readonly Nmi: "NMI";
|
|
32
|
-
readonly AuthorizeNet: "AUTHORIZE_NET";
|
|
33
|
-
};
|
|
34
|
-
export type CreateMerchantAccountDtoGatewaysNameEnum = typeof CreateMerchantAccountDtoGatewaysNameEnum[keyof typeof CreateMerchantAccountDtoGatewaysNameEnum];
|
|
35
|
-
/**
|
|
36
|
-
* Check if a given object implements the CreateMerchantAccountDtoGateways interface.
|
|
37
|
-
*/
|
|
38
|
-
export declare function instanceOfCreateMerchantAccountDtoGateways(value: object): boolean;
|
|
39
|
-
export declare function CreateMerchantAccountDtoGatewaysFromJSON(json: any): CreateMerchantAccountDtoGateways;
|
|
40
|
-
export declare function CreateMerchantAccountDtoGatewaysFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMerchantAccountDtoGateways;
|
|
41
|
-
export declare function CreateMerchantAccountDtoGatewaysToJSON(value?: CreateMerchantAccountDtoGateways | null): any;
|
|
@@ -1,58 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Channel Payments API
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
8
|
-
*
|
|
9
|
-
*/
|
|
10
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
-
exports.CreateMerchantAccountDtoGatewaysToJSON = exports.CreateMerchantAccountDtoGatewaysFromJSONTyped = exports.CreateMerchantAccountDtoGatewaysFromJSON = exports.instanceOfCreateMerchantAccountDtoGateways = exports.CreateMerchantAccountDtoGatewaysNameEnum = void 0;
|
|
12
|
-
const runtime_1 = require("../runtime");
|
|
13
|
-
/**
|
|
14
|
-
* @export
|
|
15
|
-
*/
|
|
16
|
-
exports.CreateMerchantAccountDtoGatewaysNameEnum = {
|
|
17
|
-
Epay: 'EPAY',
|
|
18
|
-
Nmi: 'NMI',
|
|
19
|
-
AuthorizeNet: 'AUTHORIZE_NET'
|
|
20
|
-
};
|
|
21
|
-
/**
|
|
22
|
-
* Check if a given object implements the CreateMerchantAccountDtoGateways interface.
|
|
23
|
-
*/
|
|
24
|
-
function instanceOfCreateMerchantAccountDtoGateways(value) {
|
|
25
|
-
let isInstance = true;
|
|
26
|
-
isInstance = isInstance && "name" in value;
|
|
27
|
-
isInstance = isInstance && "issuedGatewayId" in value;
|
|
28
|
-
return isInstance;
|
|
29
|
-
}
|
|
30
|
-
exports.instanceOfCreateMerchantAccountDtoGateways = instanceOfCreateMerchantAccountDtoGateways;
|
|
31
|
-
function CreateMerchantAccountDtoGatewaysFromJSON(json) {
|
|
32
|
-
return CreateMerchantAccountDtoGatewaysFromJSONTyped(json, false);
|
|
33
|
-
}
|
|
34
|
-
exports.CreateMerchantAccountDtoGatewaysFromJSON = CreateMerchantAccountDtoGatewaysFromJSON;
|
|
35
|
-
function CreateMerchantAccountDtoGatewaysFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
-
if ((json === undefined) || (json === null)) {
|
|
37
|
-
return json;
|
|
38
|
-
}
|
|
39
|
-
const typed = {
|
|
40
|
-
'name': json['name'],
|
|
41
|
-
'issuedGatewayId': json['issuedGatewayId'],
|
|
42
|
-
};
|
|
43
|
-
return (0, runtime_1.removeNullUndefined)(typed);
|
|
44
|
-
}
|
|
45
|
-
exports.CreateMerchantAccountDtoGatewaysFromJSONTyped = CreateMerchantAccountDtoGatewaysFromJSONTyped;
|
|
46
|
-
function CreateMerchantAccountDtoGatewaysToJSON(value) {
|
|
47
|
-
if (value === undefined) {
|
|
48
|
-
return undefined;
|
|
49
|
-
}
|
|
50
|
-
if (value === null) {
|
|
51
|
-
return null;
|
|
52
|
-
}
|
|
53
|
-
return {
|
|
54
|
-
'name': value.name,
|
|
55
|
-
'issuedGatewayId': value.issuedGatewayId,
|
|
56
|
-
};
|
|
57
|
-
}
|
|
58
|
-
exports.CreateMerchantAccountDtoGatewaysToJSON = CreateMerchantAccountDtoGatewaysToJSON;
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Channel Payments API
|
|
3
|
-
*
|
|
4
|
-
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
import type { CreateMerchantAccountDtoCfee } from './CreateMerchantAccountDtoCfee';
|
|
8
|
-
import type { CreateMerchantAccountDtoGateways } from './CreateMerchantAccountDtoGateways';
|
|
9
|
-
/**
|
|
10
|
-
*
|
|
11
|
-
* @export
|
|
12
|
-
* @interface CreateMerchantAccountsDto
|
|
13
|
-
*/
|
|
14
|
-
export interface CreateMerchantAccountsDto {
|
|
15
|
-
/**
|
|
16
|
-
* The issued MID (Merchant ID)
|
|
17
|
-
* @type {string}
|
|
18
|
-
* @memberof CreateMerchantAccountsDto
|
|
19
|
-
*/
|
|
20
|
-
issuedMid: string;
|
|
21
|
-
/**
|
|
22
|
-
* The payment method
|
|
23
|
-
* @type {string}
|
|
24
|
-
* @memberof CreateMerchantAccountsDto
|
|
25
|
-
*/
|
|
26
|
-
paymentMethod: CreateMerchantAccountsDtoPaymentMethodEnum;
|
|
27
|
-
/**
|
|
28
|
-
* The payment service provider
|
|
29
|
-
* @type {string}
|
|
30
|
-
* @memberof CreateMerchantAccountsDto
|
|
31
|
-
*/
|
|
32
|
-
psp: CreateMerchantAccountsDtoPspEnum;
|
|
33
|
-
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {CreateMerchantAccountDtoCfee}
|
|
36
|
-
* @memberof CreateMerchantAccountsDto
|
|
37
|
-
*/
|
|
38
|
-
cfee: CreateMerchantAccountDtoCfee;
|
|
39
|
-
/**
|
|
40
|
-
*
|
|
41
|
-
* @type {CreateMerchantAccountDtoGateways}
|
|
42
|
-
* @memberof CreateMerchantAccountsDto
|
|
43
|
-
*/
|
|
44
|
-
gateways: CreateMerchantAccountDtoGateways;
|
|
45
|
-
/**
|
|
46
|
-
* The accepted currencies
|
|
47
|
-
* @type {Array<string>}
|
|
48
|
-
* @memberof CreateMerchantAccountsDto
|
|
49
|
-
*/
|
|
50
|
-
acceptedCurrencies?: Array<CreateMerchantAccountsDtoAcceptedCurrenciesEnum>;
|
|
51
|
-
/**
|
|
52
|
-
* The MCC (Merchant Category Code)
|
|
53
|
-
* @type {string}
|
|
54
|
-
* @memberof CreateMerchantAccountsDto
|
|
55
|
-
*/
|
|
56
|
-
mcc?: string;
|
|
57
|
-
/**
|
|
58
|
-
* The BIN (Bank Identification Number)
|
|
59
|
-
* @type {string}
|
|
60
|
-
* @memberof CreateMerchantAccountsDto
|
|
61
|
-
*/
|
|
62
|
-
bin?: string;
|
|
63
|
-
/**
|
|
64
|
-
* The chain or franchise information associated with the merchant
|
|
65
|
-
* @type {string}
|
|
66
|
-
* @memberof CreateMerchantAccountsDto
|
|
67
|
-
*/
|
|
68
|
-
chain?: string;
|
|
69
|
-
/**
|
|
70
|
-
* The store information associated with the merchant
|
|
71
|
-
* @type {string}
|
|
72
|
-
* @memberof CreateMerchantAccountsDto
|
|
73
|
-
*/
|
|
74
|
-
store?: string;
|
|
75
|
-
/**
|
|
76
|
-
* The agent information associated with the merchant
|
|
77
|
-
* @type {string}
|
|
78
|
-
* @memberof CreateMerchantAccountsDto
|
|
79
|
-
*/
|
|
80
|
-
agent?: string;
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* @export
|
|
84
|
-
*/
|
|
85
|
-
export declare const CreateMerchantAccountsDtoPaymentMethodEnum: {
|
|
86
|
-
readonly Card: "CARD";
|
|
87
|
-
readonly Ach: "ACH";
|
|
88
|
-
};
|
|
89
|
-
export type CreateMerchantAccountsDtoPaymentMethodEnum = typeof CreateMerchantAccountsDtoPaymentMethodEnum[keyof typeof CreateMerchantAccountsDtoPaymentMethodEnum];
|
|
90
|
-
/**
|
|
91
|
-
* @export
|
|
92
|
-
*/
|
|
93
|
-
export declare const CreateMerchantAccountsDtoPspEnum: {
|
|
94
|
-
readonly Tsys: "TSYS";
|
|
95
|
-
readonly Nashville: "NASHVILLE";
|
|
96
|
-
readonly ChannelPayments: "CHANNEL_PAYMENTS";
|
|
97
|
-
};
|
|
98
|
-
export type CreateMerchantAccountsDtoPspEnum = typeof CreateMerchantAccountsDtoPspEnum[keyof typeof CreateMerchantAccountsDtoPspEnum];
|
|
99
|
-
/**
|
|
100
|
-
* @export
|
|
101
|
-
*/
|
|
102
|
-
export declare const CreateMerchantAccountsDtoAcceptedCurrenciesEnum: {
|
|
103
|
-
readonly Usd: "USD";
|
|
104
|
-
readonly Aud: "AUD";
|
|
105
|
-
readonly Cad: "CAD";
|
|
106
|
-
};
|
|
107
|
-
export type CreateMerchantAccountsDtoAcceptedCurrenciesEnum = typeof CreateMerchantAccountsDtoAcceptedCurrenciesEnum[keyof typeof CreateMerchantAccountsDtoAcceptedCurrenciesEnum];
|
|
108
|
-
/**
|
|
109
|
-
* Check if a given object implements the CreateMerchantAccountsDto interface.
|
|
110
|
-
*/
|
|
111
|
-
export declare function instanceOfCreateMerchantAccountsDto(value: object): boolean;
|
|
112
|
-
export declare function CreateMerchantAccountsDtoFromJSON(json: any): CreateMerchantAccountsDto;
|
|
113
|
-
export declare function CreateMerchantAccountsDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMerchantAccountsDto;
|
|
114
|
-
export declare function CreateMerchantAccountsDtoToJSON(value?: CreateMerchantAccountsDto | null): any;
|
|
@@ -1,96 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/* tslint:disable */
|
|
3
|
-
/* eslint-disable */
|
|
4
|
-
/**
|
|
5
|
-
* Channel Payments API
|
|
6
|
-
*
|
|
7
|
-
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
8
|
-
*
|
|
9
|
-
*/
|
|
10
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
11
|
-
exports.CreateMerchantAccountsDtoToJSON = exports.CreateMerchantAccountsDtoFromJSONTyped = exports.CreateMerchantAccountsDtoFromJSON = exports.instanceOfCreateMerchantAccountsDto = exports.CreateMerchantAccountsDtoAcceptedCurrenciesEnum = exports.CreateMerchantAccountsDtoPspEnum = exports.CreateMerchantAccountsDtoPaymentMethodEnum = void 0;
|
|
12
|
-
const runtime_1 = require("../runtime");
|
|
13
|
-
const CreateMerchantAccountDtoCfee_1 = require("./CreateMerchantAccountDtoCfee");
|
|
14
|
-
const CreateMerchantAccountDtoGateways_1 = require("./CreateMerchantAccountDtoGateways");
|
|
15
|
-
/**
|
|
16
|
-
* @export
|
|
17
|
-
*/
|
|
18
|
-
exports.CreateMerchantAccountsDtoPaymentMethodEnum = {
|
|
19
|
-
Card: 'CARD',
|
|
20
|
-
Ach: 'ACH'
|
|
21
|
-
};
|
|
22
|
-
/**
|
|
23
|
-
* @export
|
|
24
|
-
*/
|
|
25
|
-
exports.CreateMerchantAccountsDtoPspEnum = {
|
|
26
|
-
Tsys: 'TSYS',
|
|
27
|
-
Nashville: 'NASHVILLE',
|
|
28
|
-
ChannelPayments: 'CHANNEL_PAYMENTS'
|
|
29
|
-
};
|
|
30
|
-
/**
|
|
31
|
-
* @export
|
|
32
|
-
*/
|
|
33
|
-
exports.CreateMerchantAccountsDtoAcceptedCurrenciesEnum = {
|
|
34
|
-
Usd: 'USD',
|
|
35
|
-
Aud: 'AUD',
|
|
36
|
-
Cad: 'CAD'
|
|
37
|
-
};
|
|
38
|
-
/**
|
|
39
|
-
* Check if a given object implements the CreateMerchantAccountsDto interface.
|
|
40
|
-
*/
|
|
41
|
-
function instanceOfCreateMerchantAccountsDto(value) {
|
|
42
|
-
let isInstance = true;
|
|
43
|
-
isInstance = isInstance && "issuedMid" in value;
|
|
44
|
-
isInstance = isInstance && "paymentMethod" in value;
|
|
45
|
-
isInstance = isInstance && "psp" in value;
|
|
46
|
-
isInstance = isInstance && "cfee" in value;
|
|
47
|
-
isInstance = isInstance && "gateways" in value;
|
|
48
|
-
return isInstance;
|
|
49
|
-
}
|
|
50
|
-
exports.instanceOfCreateMerchantAccountsDto = instanceOfCreateMerchantAccountsDto;
|
|
51
|
-
function CreateMerchantAccountsDtoFromJSON(json) {
|
|
52
|
-
return CreateMerchantAccountsDtoFromJSONTyped(json, false);
|
|
53
|
-
}
|
|
54
|
-
exports.CreateMerchantAccountsDtoFromJSON = CreateMerchantAccountsDtoFromJSON;
|
|
55
|
-
function CreateMerchantAccountsDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
56
|
-
if ((json === undefined) || (json === null)) {
|
|
57
|
-
return json;
|
|
58
|
-
}
|
|
59
|
-
const typed = {
|
|
60
|
-
'issuedMid': json['issuedMid'],
|
|
61
|
-
'paymentMethod': json['paymentMethod'],
|
|
62
|
-
'psp': json['psp'],
|
|
63
|
-
'cfee': (0, CreateMerchantAccountDtoCfee_1.CreateMerchantAccountDtoCfeeFromJSON)(json['cfee']),
|
|
64
|
-
'gateways': (0, CreateMerchantAccountDtoGateways_1.CreateMerchantAccountDtoGatewaysFromJSON)(json['gateways']),
|
|
65
|
-
'acceptedCurrencies': !(0, runtime_1.exists)(json, 'acceptedCurrencies') ? undefined : json['acceptedCurrencies'],
|
|
66
|
-
'mcc': !(0, runtime_1.exists)(json, 'mcc') ? undefined : json['mcc'],
|
|
67
|
-
'bin': !(0, runtime_1.exists)(json, 'bin') ? undefined : json['bin'],
|
|
68
|
-
'chain': !(0, runtime_1.exists)(json, 'chain') ? undefined : json['chain'],
|
|
69
|
-
'store': !(0, runtime_1.exists)(json, 'store') ? undefined : json['store'],
|
|
70
|
-
'agent': !(0, runtime_1.exists)(json, 'agent') ? undefined : json['agent'],
|
|
71
|
-
};
|
|
72
|
-
return (0, runtime_1.removeNullUndefined)(typed);
|
|
73
|
-
}
|
|
74
|
-
exports.CreateMerchantAccountsDtoFromJSONTyped = CreateMerchantAccountsDtoFromJSONTyped;
|
|
75
|
-
function CreateMerchantAccountsDtoToJSON(value) {
|
|
76
|
-
if (value === undefined) {
|
|
77
|
-
return undefined;
|
|
78
|
-
}
|
|
79
|
-
if (value === null) {
|
|
80
|
-
return null;
|
|
81
|
-
}
|
|
82
|
-
return {
|
|
83
|
-
'issuedMid': value.issuedMid,
|
|
84
|
-
'paymentMethod': value.paymentMethod,
|
|
85
|
-
'psp': value.psp,
|
|
86
|
-
'cfee': (0, CreateMerchantAccountDtoCfee_1.CreateMerchantAccountDtoCfeeToJSON)(value.cfee),
|
|
87
|
-
'gateways': (0, CreateMerchantAccountDtoGateways_1.CreateMerchantAccountDtoGatewaysToJSON)(value.gateways),
|
|
88
|
-
'acceptedCurrencies': value.acceptedCurrencies,
|
|
89
|
-
'mcc': value.mcc,
|
|
90
|
-
'bin': value.bin,
|
|
91
|
-
'chain': value.chain,
|
|
92
|
-
'store': value.store,
|
|
93
|
-
'agent': value.agent,
|
|
94
|
-
};
|
|
95
|
-
}
|
|
96
|
-
exports.CreateMerchantAccountsDtoToJSON = CreateMerchantAccountsDtoToJSON;
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Channel Payments API
|
|
3
|
-
*
|
|
4
|
-
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
|
-
*
|
|
6
|
-
*/
|
|
7
|
-
/**
|
|
8
|
-
*
|
|
9
|
-
* @export
|
|
10
|
-
* @interface CreateMerchantGateway
|
|
11
|
-
*/
|
|
12
|
-
export interface CreateMerchantGateway {
|
|
13
|
-
/**
|
|
14
|
-
* The name of the gateway
|
|
15
|
-
* @type {string}
|
|
16
|
-
* @memberof CreateMerchantGateway
|
|
17
|
-
*/
|
|
18
|
-
name: CreateMerchantGatewayNameEnum;
|
|
19
|
-
/**
|
|
20
|
-
* The ID issued by the gateway
|
|
21
|
-
* @type {string}
|
|
22
|
-
* @memberof CreateMerchantGateway
|
|
23
|
-
*/
|
|
24
|
-
issuedGatewayId: string;
|
|
25
|
-
}
|
|
26
|
-
/**
|
|
27
|
-
* @export
|
|
28
|
-
*/
|
|
29
|
-
export declare const CreateMerchantGatewayNameEnum: {
|
|
30
|
-
readonly Epay: "EPAY";
|
|
31
|
-
readonly Nmi: "NMI";
|
|
32
|
-
readonly AuthorizeNet: "AUTHORIZE_NET";
|
|
33
|
-
};
|
|
34
|
-
export type CreateMerchantGatewayNameEnum = typeof CreateMerchantGatewayNameEnum[keyof typeof CreateMerchantGatewayNameEnum];
|
|
35
|
-
/**
|
|
36
|
-
* Check if a given object implements the CreateMerchantGateway interface.
|
|
37
|
-
*/
|
|
38
|
-
export declare function instanceOfCreateMerchantGateway(value: object): boolean;
|
|
39
|
-
export declare function CreateMerchantGatewayFromJSON(json: any): CreateMerchantGateway;
|
|
40
|
-
export declare function CreateMerchantGatewayFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMerchantGateway;
|
|
41
|
-
export declare function CreateMerchantGatewayToJSON(value?: CreateMerchantGateway | null): any;
|