@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
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Channel Payments API
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
import { exists, removeNullUndefined } from '../runtime';
|
|
10
|
+
/**
|
|
11
|
+
* Check if a given object implements the CreateAmountRuleConditionDto interface.
|
|
12
|
+
*/
|
|
13
|
+
export function instanceOfCreateAmountRuleConditionDto(value) {
|
|
14
|
+
let isInstance = true;
|
|
15
|
+
isInstance = isInstance && "operator" in value;
|
|
16
|
+
return isInstance;
|
|
17
|
+
}
|
|
18
|
+
export function CreateAmountRuleConditionDtoFromJSON(json) {
|
|
19
|
+
return CreateAmountRuleConditionDtoFromJSONTyped(json, false);
|
|
20
|
+
}
|
|
21
|
+
export function CreateAmountRuleConditionDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
22
|
+
if ((json === undefined) || (json === null)) {
|
|
23
|
+
return json;
|
|
24
|
+
}
|
|
25
|
+
const typed = {
|
|
26
|
+
'operator': json['operator'],
|
|
27
|
+
'value': !exists(json, 'value') ? undefined : json['value'],
|
|
28
|
+
'min': !exists(json, 'min') ? undefined : json['min'],
|
|
29
|
+
'max': !exists(json, 'max') ? undefined : json['max'],
|
|
30
|
+
};
|
|
31
|
+
return removeNullUndefined(typed);
|
|
32
|
+
}
|
|
33
|
+
export function CreateAmountRuleConditionDtoToJSON(value) {
|
|
34
|
+
if (value === undefined) {
|
|
35
|
+
return undefined;
|
|
36
|
+
}
|
|
37
|
+
if (value === null) {
|
|
38
|
+
return null;
|
|
39
|
+
}
|
|
40
|
+
return {
|
|
41
|
+
'operator': value.operator,
|
|
42
|
+
'value': value.value,
|
|
43
|
+
'min': value.min,
|
|
44
|
+
'max': value.max,
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
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 CreateCFeeDto
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateCFeeDto {
|
|
13
|
+
/**
|
|
14
|
+
* The type of the cFee
|
|
15
|
+
* @type {string}
|
|
16
|
+
* @memberof CreateCFeeDto
|
|
17
|
+
*/
|
|
18
|
+
type: CreateCFeeDtoTypeEnum;
|
|
19
|
+
/**
|
|
20
|
+
* The rate of the cFee as an integer
|
|
21
|
+
* @type {number}
|
|
22
|
+
* @memberof CreateCFeeDto
|
|
23
|
+
*/
|
|
24
|
+
rate: number;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* @export
|
|
28
|
+
*/
|
|
29
|
+
export declare const CreateCFeeDtoTypeEnum: {
|
|
30
|
+
readonly Percentage: "PERCENTAGE";
|
|
31
|
+
readonly Fixed: "FIXED";
|
|
32
|
+
};
|
|
33
|
+
export type CreateCFeeDtoTypeEnum = typeof CreateCFeeDtoTypeEnum[keyof typeof CreateCFeeDtoTypeEnum];
|
|
34
|
+
/**
|
|
35
|
+
* Check if a given object implements the CreateCFeeDto interface.
|
|
36
|
+
*/
|
|
37
|
+
export declare function instanceOfCreateCFeeDto(value: object): boolean;
|
|
38
|
+
export declare function CreateCFeeDtoFromJSON(json: any): CreateCFeeDto;
|
|
39
|
+
export declare function CreateCFeeDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCFeeDto;
|
|
40
|
+
export declare function CreateCFeeDtoToJSON(value?: CreateCFeeDto | null): any;
|
|
@@ -10,23 +10,23 @@ import { removeNullUndefined } from '../runtime';
|
|
|
10
10
|
/**
|
|
11
11
|
* @export
|
|
12
12
|
*/
|
|
13
|
-
export const
|
|
13
|
+
export const CreateCFeeDtoTypeEnum = {
|
|
14
14
|
Percentage: 'PERCENTAGE',
|
|
15
15
|
Fixed: 'FIXED'
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
18
|
-
* Check if a given object implements the
|
|
18
|
+
* Check if a given object implements the CreateCFeeDto interface.
|
|
19
19
|
*/
|
|
20
|
-
export function
|
|
20
|
+
export function instanceOfCreateCFeeDto(value) {
|
|
21
21
|
let isInstance = true;
|
|
22
22
|
isInstance = isInstance && "type" in value;
|
|
23
23
|
isInstance = isInstance && "rate" in value;
|
|
24
24
|
return isInstance;
|
|
25
25
|
}
|
|
26
|
-
export function
|
|
27
|
-
return
|
|
26
|
+
export function CreateCFeeDtoFromJSON(json) {
|
|
27
|
+
return CreateCFeeDtoFromJSONTyped(json, false);
|
|
28
28
|
}
|
|
29
|
-
export function
|
|
29
|
+
export function CreateCFeeDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
30
30
|
if ((json === undefined) || (json === null)) {
|
|
31
31
|
return json;
|
|
32
32
|
}
|
|
@@ -36,7 +36,7 @@ export function CFeeDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
};
|
|
37
37
|
return removeNullUndefined(typed);
|
|
38
38
|
}
|
|
39
|
-
export function
|
|
39
|
+
export function CreateCFeeDtoToJSON(value) {
|
|
40
40
|
if (value === undefined) {
|
|
41
41
|
return undefined;
|
|
42
42
|
}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 CreateCFeeRuleConditionDto
|
|
11
|
+
*/
|
|
12
|
+
export interface CreateCFeeRuleConditionDto {
|
|
13
|
+
/**
|
|
14
|
+
* The operator for the condition
|
|
15
|
+
* @type {object}
|
|
16
|
+
* @memberof CreateCFeeRuleConditionDto
|
|
17
|
+
*/
|
|
18
|
+
operator: object;
|
|
19
|
+
/**
|
|
20
|
+
* The defined value for the condition
|
|
21
|
+
* @type {boolean}
|
|
22
|
+
* @memberof CreateCFeeRuleConditionDto
|
|
23
|
+
*/
|
|
24
|
+
value: boolean;
|
|
25
|
+
}
|
|
26
|
+
/**
|
|
27
|
+
* Check if a given object implements the CreateCFeeRuleConditionDto interface.
|
|
28
|
+
*/
|
|
29
|
+
export declare function instanceOfCreateCFeeRuleConditionDto(value: object): boolean;
|
|
30
|
+
export declare function CreateCFeeRuleConditionDtoFromJSON(json: any): CreateCFeeRuleConditionDto;
|
|
31
|
+
export declare function CreateCFeeRuleConditionDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateCFeeRuleConditionDto;
|
|
32
|
+
export declare function CreateCFeeRuleConditionDtoToJSON(value?: CreateCFeeRuleConditionDto | null): any;
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Channel Payments API
|
|
5
|
+
*
|
|
6
|
+
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
7
|
+
*
|
|
8
|
+
*/
|
|
9
|
+
import { removeNullUndefined } from '../runtime';
|
|
10
|
+
/**
|
|
11
|
+
* Check if a given object implements the CreateCFeeRuleConditionDto interface.
|
|
12
|
+
*/
|
|
13
|
+
export function instanceOfCreateCFeeRuleConditionDto(value) {
|
|
14
|
+
let isInstance = true;
|
|
15
|
+
isInstance = isInstance && "operator" in value;
|
|
16
|
+
isInstance = isInstance && "value" in value;
|
|
17
|
+
return isInstance;
|
|
18
|
+
}
|
|
19
|
+
export function CreateCFeeRuleConditionDtoFromJSON(json) {
|
|
20
|
+
return CreateCFeeRuleConditionDtoFromJSONTyped(json, false);
|
|
21
|
+
}
|
|
22
|
+
export function CreateCFeeRuleConditionDtoFromJSONTyped(json, ignoreDiscriminator) {
|
|
23
|
+
if ((json === undefined) || (json === null)) {
|
|
24
|
+
return json;
|
|
25
|
+
}
|
|
26
|
+
const typed = {
|
|
27
|
+
'operator': json['operator'],
|
|
28
|
+
'value': json['value'],
|
|
29
|
+
};
|
|
30
|
+
return removeNullUndefined(typed);
|
|
31
|
+
}
|
|
32
|
+
export function CreateCFeeRuleConditionDtoToJSON(value) {
|
|
33
|
+
if (value === undefined) {
|
|
34
|
+
return undefined;
|
|
35
|
+
}
|
|
36
|
+
if (value === null) {
|
|
37
|
+
return null;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'operator': value.operator,
|
|
41
|
+
'value': value.value,
|
|
42
|
+
};
|
|
43
|
+
}
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
* NOTE: This class is auto generated. Do not edit the class manually.
|
|
5
5
|
*
|
|
6
6
|
*/
|
|
7
|
-
import type {
|
|
8
|
-
import type {
|
|
7
|
+
import type { CreateMerchantAccountDtoCFee } from './CreateMerchantAccountDtoCFee';
|
|
8
|
+
import type { CreateMerchantConnectorWithoutMerchantAccountIdDto } from './CreateMerchantConnectorWithoutMerchantAccountIdDto';
|
|
9
9
|
/**
|
|
10
10
|
*
|
|
11
11
|
* @export
|
|
@@ -29,7 +29,7 @@ export interface CreateMerchantAccountDto {
|
|
|
29
29
|
* @type {string}
|
|
30
30
|
* @memberof CreateMerchantAccountDto
|
|
31
31
|
*/
|
|
32
|
-
|
|
32
|
+
method: CreateMerchantAccountDtoMethodEnum;
|
|
33
33
|
/**
|
|
34
34
|
* The payment service provider
|
|
35
35
|
* @type {string}
|
|
@@ -38,22 +38,34 @@ export interface CreateMerchantAccountDto {
|
|
|
38
38
|
psp: CreateMerchantAccountDtoPspEnum;
|
|
39
39
|
/**
|
|
40
40
|
*
|
|
41
|
-
* @type {
|
|
41
|
+
* @type {CreateMerchantAccountDtoCFee}
|
|
42
42
|
* @memberof CreateMerchantAccountDto
|
|
43
43
|
*/
|
|
44
|
-
|
|
44
|
+
cFee: CreateMerchantAccountDtoCFee;
|
|
45
45
|
/**
|
|
46
|
-
*
|
|
47
|
-
* @type {
|
|
46
|
+
* The accepted card types
|
|
47
|
+
* @type {Array<string>}
|
|
48
48
|
* @memberof CreateMerchantAccountDto
|
|
49
49
|
*/
|
|
50
|
-
|
|
50
|
+
cardTypes?: Array<CreateMerchantAccountDtoCardTypesEnum>;
|
|
51
|
+
/**
|
|
52
|
+
* The accepted card schemes
|
|
53
|
+
* @type {Array<string>}
|
|
54
|
+
* @memberof CreateMerchantAccountDto
|
|
55
|
+
*/
|
|
56
|
+
cardSchemes?: Array<CreateMerchantAccountDtoCardSchemesEnum>;
|
|
51
57
|
/**
|
|
52
58
|
* The accepted currencies
|
|
53
59
|
* @type {Array<string>}
|
|
54
60
|
* @memberof CreateMerchantAccountDto
|
|
55
61
|
*/
|
|
56
|
-
|
|
62
|
+
currencies?: Array<CreateMerchantAccountDtoCurrenciesEnum>;
|
|
63
|
+
/**
|
|
64
|
+
* The list of merchant connectors
|
|
65
|
+
* @type {Array<CreateMerchantConnectorWithoutMerchantAccountIdDto>}
|
|
66
|
+
* @memberof CreateMerchantAccountDto
|
|
67
|
+
*/
|
|
68
|
+
connectors: Array<CreateMerchantConnectorWithoutMerchantAccountIdDto>;
|
|
57
69
|
/**
|
|
58
70
|
* The MCC (Merchant Category Code)
|
|
59
71
|
* @type {string}
|
|
@@ -88,29 +100,52 @@ export interface CreateMerchantAccountDto {
|
|
|
88
100
|
/**
|
|
89
101
|
* @export
|
|
90
102
|
*/
|
|
91
|
-
export declare const
|
|
103
|
+
export declare const CreateMerchantAccountDtoMethodEnum: {
|
|
92
104
|
readonly Card: "CARD";
|
|
93
105
|
readonly Ach: "ACH";
|
|
94
106
|
};
|
|
95
|
-
export type
|
|
107
|
+
export type CreateMerchantAccountDtoMethodEnum = typeof CreateMerchantAccountDtoMethodEnum[keyof typeof CreateMerchantAccountDtoMethodEnum];
|
|
96
108
|
/**
|
|
97
109
|
* @export
|
|
98
110
|
*/
|
|
99
111
|
export declare const CreateMerchantAccountDtoPspEnum: {
|
|
100
112
|
readonly Tsys: "TSYS";
|
|
101
113
|
readonly Nashville: "NASHVILLE";
|
|
114
|
+
readonly North: "NORTH";
|
|
102
115
|
readonly ChannelPayments: "CHANNEL_PAYMENTS";
|
|
103
116
|
};
|
|
104
117
|
export type CreateMerchantAccountDtoPspEnum = typeof CreateMerchantAccountDtoPspEnum[keyof typeof CreateMerchantAccountDtoPspEnum];
|
|
105
118
|
/**
|
|
106
119
|
* @export
|
|
107
120
|
*/
|
|
108
|
-
export declare const
|
|
121
|
+
export declare const CreateMerchantAccountDtoCardTypesEnum: {
|
|
122
|
+
readonly Credit: "CREDIT";
|
|
123
|
+
readonly Debit: "DEBIT";
|
|
124
|
+
readonly Prepaid: "PREPAID";
|
|
125
|
+
};
|
|
126
|
+
export type CreateMerchantAccountDtoCardTypesEnum = typeof CreateMerchantAccountDtoCardTypesEnum[keyof typeof CreateMerchantAccountDtoCardTypesEnum];
|
|
127
|
+
/**
|
|
128
|
+
* @export
|
|
129
|
+
*/
|
|
130
|
+
export declare const CreateMerchantAccountDtoCardSchemesEnum: {
|
|
131
|
+
readonly Visa: "VISA";
|
|
132
|
+
readonly Mastercard: "MASTERCARD";
|
|
133
|
+
readonly Amex: "AMEX";
|
|
134
|
+
readonly Discover: "DISCOVER";
|
|
135
|
+
readonly Jcb: "JCB";
|
|
136
|
+
readonly DinersClub: "DINERS_CLUB";
|
|
137
|
+
readonly Maestro: "MAESTRO";
|
|
138
|
+
};
|
|
139
|
+
export type CreateMerchantAccountDtoCardSchemesEnum = typeof CreateMerchantAccountDtoCardSchemesEnum[keyof typeof CreateMerchantAccountDtoCardSchemesEnum];
|
|
140
|
+
/**
|
|
141
|
+
* @export
|
|
142
|
+
*/
|
|
143
|
+
export declare const CreateMerchantAccountDtoCurrenciesEnum: {
|
|
109
144
|
readonly Usd: "USD";
|
|
110
145
|
readonly Aud: "AUD";
|
|
111
146
|
readonly Cad: "CAD";
|
|
112
147
|
};
|
|
113
|
-
export type
|
|
148
|
+
export type CreateMerchantAccountDtoCurrenciesEnum = typeof CreateMerchantAccountDtoCurrenciesEnum[keyof typeof CreateMerchantAccountDtoCurrenciesEnum];
|
|
114
149
|
/**
|
|
115
150
|
* Check if a given object implements the CreateMerchantAccountDto interface.
|
|
116
151
|
*/
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
*
|
|
8
8
|
*/
|
|
9
9
|
import { exists, removeNullUndefined } from '../runtime';
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
10
|
+
import { CreateMerchantAccountDtoCFeeFromJSON, CreateMerchantAccountDtoCFeeToJSON, } from './CreateMerchantAccountDtoCFee';
|
|
11
|
+
import { CreateMerchantConnectorWithoutMerchantAccountIdDtoFromJSON, CreateMerchantConnectorWithoutMerchantAccountIdDtoToJSON, } from './CreateMerchantConnectorWithoutMerchantAccountIdDto';
|
|
12
12
|
/**
|
|
13
13
|
* @export
|
|
14
14
|
*/
|
|
15
|
-
export const
|
|
15
|
+
export const CreateMerchantAccountDtoMethodEnum = {
|
|
16
16
|
Card: 'CARD',
|
|
17
17
|
Ach: 'ACH'
|
|
18
18
|
};
|
|
@@ -22,12 +22,33 @@ export const CreateMerchantAccountDtoPaymentMethodEnum = {
|
|
|
22
22
|
export const CreateMerchantAccountDtoPspEnum = {
|
|
23
23
|
Tsys: 'TSYS',
|
|
24
24
|
Nashville: 'NASHVILLE',
|
|
25
|
+
North: 'NORTH',
|
|
25
26
|
ChannelPayments: 'CHANNEL_PAYMENTS'
|
|
26
27
|
};
|
|
27
28
|
/**
|
|
28
29
|
* @export
|
|
29
30
|
*/
|
|
30
|
-
export const
|
|
31
|
+
export const CreateMerchantAccountDtoCardTypesEnum = {
|
|
32
|
+
Credit: 'CREDIT',
|
|
33
|
+
Debit: 'DEBIT',
|
|
34
|
+
Prepaid: 'PREPAID'
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* @export
|
|
38
|
+
*/
|
|
39
|
+
export const CreateMerchantAccountDtoCardSchemesEnum = {
|
|
40
|
+
Visa: 'VISA',
|
|
41
|
+
Mastercard: 'MASTERCARD',
|
|
42
|
+
Amex: 'AMEX',
|
|
43
|
+
Discover: 'DISCOVER',
|
|
44
|
+
Jcb: 'JCB',
|
|
45
|
+
DinersClub: 'DINERS_CLUB',
|
|
46
|
+
Maestro: 'MAESTRO'
|
|
47
|
+
};
|
|
48
|
+
/**
|
|
49
|
+
* @export
|
|
50
|
+
*/
|
|
51
|
+
export const CreateMerchantAccountDtoCurrenciesEnum = {
|
|
31
52
|
Usd: 'USD',
|
|
32
53
|
Aud: 'AUD',
|
|
33
54
|
Cad: 'CAD'
|
|
@@ -39,10 +60,10 @@ export function instanceOfCreateMerchantAccountDto(value) {
|
|
|
39
60
|
let isInstance = true;
|
|
40
61
|
isInstance = isInstance && "merchantId" in value;
|
|
41
62
|
isInstance = isInstance && "issuedMid" in value;
|
|
42
|
-
isInstance = isInstance && "
|
|
63
|
+
isInstance = isInstance && "method" in value;
|
|
43
64
|
isInstance = isInstance && "psp" in value;
|
|
44
|
-
isInstance = isInstance && "
|
|
45
|
-
isInstance = isInstance && "
|
|
65
|
+
isInstance = isInstance && "cFee" in value;
|
|
66
|
+
isInstance = isInstance && "connectors" in value;
|
|
46
67
|
return isInstance;
|
|
47
68
|
}
|
|
48
69
|
export function CreateMerchantAccountDtoFromJSON(json) {
|
|
@@ -55,11 +76,13 @@ export function CreateMerchantAccountDtoFromJSONTyped(json, ignoreDiscriminator)
|
|
|
55
76
|
const typed = {
|
|
56
77
|
'merchantId': json['merchantId'],
|
|
57
78
|
'issuedMid': json['issuedMid'],
|
|
58
|
-
'
|
|
79
|
+
'method': json['method'],
|
|
59
80
|
'psp': json['psp'],
|
|
60
|
-
'
|
|
61
|
-
'
|
|
62
|
-
'
|
|
81
|
+
'cFee': CreateMerchantAccountDtoCFeeFromJSON(json['cFee']),
|
|
82
|
+
'cardTypes': !exists(json, 'cardTypes') ? undefined : json['cardTypes'],
|
|
83
|
+
'cardSchemes': !exists(json, 'cardSchemes') ? undefined : json['cardSchemes'],
|
|
84
|
+
'currencies': !exists(json, 'currencies') ? undefined : json['currencies'],
|
|
85
|
+
'connectors': (json['connectors'].map(CreateMerchantConnectorWithoutMerchantAccountIdDtoFromJSON)),
|
|
63
86
|
'mcc': !exists(json, 'mcc') ? undefined : json['mcc'],
|
|
64
87
|
'bin': !exists(json, 'bin') ? undefined : json['bin'],
|
|
65
88
|
'chain': !exists(json, 'chain') ? undefined : json['chain'],
|
|
@@ -78,11 +101,13 @@ export function CreateMerchantAccountDtoToJSON(value) {
|
|
|
78
101
|
return {
|
|
79
102
|
'merchantId': value.merchantId,
|
|
80
103
|
'issuedMid': value.issuedMid,
|
|
81
|
-
'
|
|
104
|
+
'method': value.method,
|
|
82
105
|
'psp': value.psp,
|
|
83
|
-
'
|
|
84
|
-
'
|
|
85
|
-
'
|
|
106
|
+
'cFee': CreateMerchantAccountDtoCFeeToJSON(value.cFee),
|
|
107
|
+
'cardTypes': value.cardTypes,
|
|
108
|
+
'cardSchemes': value.cardSchemes,
|
|
109
|
+
'currencies': value.currencies,
|
|
110
|
+
'connectors': (value.connectors.map(CreateMerchantConnectorWithoutMerchantAccountIdDtoToJSON)),
|
|
86
111
|
'mcc': value.mcc,
|
|
87
112
|
'bin': value.bin,
|
|
88
113
|
'chain': value.chain,
|
|
@@ -0,0 +1,40 @@
|
|
|
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;
|
|
@@ -10,23 +10,23 @@ import { removeNullUndefined } from '../runtime';
|
|
|
10
10
|
/**
|
|
11
11
|
* @export
|
|
12
12
|
*/
|
|
13
|
-
export const
|
|
13
|
+
export const CreateMerchantAccountDtoCFeeTypeEnum = {
|
|
14
14
|
Percentage: 'PERCENTAGE',
|
|
15
15
|
Fixed: 'FIXED'
|
|
16
16
|
};
|
|
17
17
|
/**
|
|
18
|
-
* Check if a given object implements the
|
|
18
|
+
* Check if a given object implements the CreateMerchantAccountDtoCFee interface.
|
|
19
19
|
*/
|
|
20
|
-
export function
|
|
20
|
+
export function instanceOfCreateMerchantAccountDtoCFee(value) {
|
|
21
21
|
let isInstance = true;
|
|
22
22
|
isInstance = isInstance && "type" in value;
|
|
23
23
|
isInstance = isInstance && "rate" in value;
|
|
24
24
|
return isInstance;
|
|
25
25
|
}
|
|
26
|
-
export function
|
|
27
|
-
return
|
|
26
|
+
export function CreateMerchantAccountDtoCFeeFromJSON(json) {
|
|
27
|
+
return CreateMerchantAccountDtoCFeeFromJSONTyped(json, false);
|
|
28
28
|
}
|
|
29
|
-
export function
|
|
29
|
+
export function CreateMerchantAccountDtoCFeeFromJSONTyped(json, ignoreDiscriminator) {
|
|
30
30
|
if ((json === undefined) || (json === null)) {
|
|
31
31
|
return json;
|
|
32
32
|
}
|
|
@@ -36,7 +36,7 @@ export function CreateMerchantAccountDtoCfeeFromJSONTyped(json, ignoreDiscrimina
|
|
|
36
36
|
};
|
|
37
37
|
return removeNullUndefined(typed);
|
|
38
38
|
}
|
|
39
|
-
export function
|
|
39
|
+
export function CreateMerchantAccountDtoCFeeToJSON(value) {
|
|
40
40
|
if (value === undefined) {
|
|
41
41
|
return undefined;
|
|
42
42
|
}
|
|
@@ -0,0 +1,149 @@
|
|
|
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 { CreateMerchantConnectorWithoutMerchantAccountIdDto } from './CreateMerchantConnectorWithoutMerchantAccountIdDto';
|
|
9
|
+
/**
|
|
10
|
+
*
|
|
11
|
+
* @export
|
|
12
|
+
* @interface CreateMerchantAccountWithoutMerchantIdDto
|
|
13
|
+
*/
|
|
14
|
+
export interface CreateMerchantAccountWithoutMerchantIdDto {
|
|
15
|
+
/**
|
|
16
|
+
* The issued MID (Merchant ID)
|
|
17
|
+
* @type {string}
|
|
18
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
19
|
+
*/
|
|
20
|
+
issuedMid: string;
|
|
21
|
+
/**
|
|
22
|
+
* The payment method
|
|
23
|
+
* @type {string}
|
|
24
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
25
|
+
*/
|
|
26
|
+
method: CreateMerchantAccountWithoutMerchantIdDtoMethodEnum;
|
|
27
|
+
/**
|
|
28
|
+
* The payment service provider
|
|
29
|
+
* @type {string}
|
|
30
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
31
|
+
*/
|
|
32
|
+
psp: CreateMerchantAccountWithoutMerchantIdDtoPspEnum;
|
|
33
|
+
/**
|
|
34
|
+
*
|
|
35
|
+
* @type {CreateMerchantAccountDtoCFee}
|
|
36
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
37
|
+
*/
|
|
38
|
+
cFee: CreateMerchantAccountDtoCFee;
|
|
39
|
+
/**
|
|
40
|
+
* The accepted card types
|
|
41
|
+
* @type {Array<string>}
|
|
42
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
43
|
+
*/
|
|
44
|
+
cardTypes?: Array<CreateMerchantAccountWithoutMerchantIdDtoCardTypesEnum>;
|
|
45
|
+
/**
|
|
46
|
+
* The accepted card schemes
|
|
47
|
+
* @type {Array<string>}
|
|
48
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
49
|
+
*/
|
|
50
|
+
cardSchemes?: Array<CreateMerchantAccountWithoutMerchantIdDtoCardSchemesEnum>;
|
|
51
|
+
/**
|
|
52
|
+
* The accepted currencies
|
|
53
|
+
* @type {Array<string>}
|
|
54
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
55
|
+
*/
|
|
56
|
+
currencies?: Array<CreateMerchantAccountWithoutMerchantIdDtoCurrenciesEnum>;
|
|
57
|
+
/**
|
|
58
|
+
* The list of merchant connectors
|
|
59
|
+
* @type {Array<CreateMerchantConnectorWithoutMerchantAccountIdDto>}
|
|
60
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
61
|
+
*/
|
|
62
|
+
connectors: Array<CreateMerchantConnectorWithoutMerchantAccountIdDto>;
|
|
63
|
+
/**
|
|
64
|
+
* The MCC (Merchant Category Code)
|
|
65
|
+
* @type {string}
|
|
66
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
67
|
+
*/
|
|
68
|
+
mcc?: string;
|
|
69
|
+
/**
|
|
70
|
+
* The BIN (Bank Identification Number)
|
|
71
|
+
* @type {string}
|
|
72
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
73
|
+
*/
|
|
74
|
+
bin?: string;
|
|
75
|
+
/**
|
|
76
|
+
* The chain or franchise information associated with the merchant
|
|
77
|
+
* @type {string}
|
|
78
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
79
|
+
*/
|
|
80
|
+
chain?: string;
|
|
81
|
+
/**
|
|
82
|
+
* The store information associated with the merchant
|
|
83
|
+
* @type {string}
|
|
84
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
85
|
+
*/
|
|
86
|
+
store?: string;
|
|
87
|
+
/**
|
|
88
|
+
* The agent information associated with the merchant
|
|
89
|
+
* @type {string}
|
|
90
|
+
* @memberof CreateMerchantAccountWithoutMerchantIdDto
|
|
91
|
+
*/
|
|
92
|
+
agent?: string;
|
|
93
|
+
}
|
|
94
|
+
/**
|
|
95
|
+
* @export
|
|
96
|
+
*/
|
|
97
|
+
export declare const CreateMerchantAccountWithoutMerchantIdDtoMethodEnum: {
|
|
98
|
+
readonly Card: "CARD";
|
|
99
|
+
readonly Ach: "ACH";
|
|
100
|
+
};
|
|
101
|
+
export type CreateMerchantAccountWithoutMerchantIdDtoMethodEnum = typeof CreateMerchantAccountWithoutMerchantIdDtoMethodEnum[keyof typeof CreateMerchantAccountWithoutMerchantIdDtoMethodEnum];
|
|
102
|
+
/**
|
|
103
|
+
* @export
|
|
104
|
+
*/
|
|
105
|
+
export declare const CreateMerchantAccountWithoutMerchantIdDtoPspEnum: {
|
|
106
|
+
readonly Tsys: "TSYS";
|
|
107
|
+
readonly Nashville: "NASHVILLE";
|
|
108
|
+
readonly North: "NORTH";
|
|
109
|
+
readonly ChannelPayments: "CHANNEL_PAYMENTS";
|
|
110
|
+
};
|
|
111
|
+
export type CreateMerchantAccountWithoutMerchantIdDtoPspEnum = typeof CreateMerchantAccountWithoutMerchantIdDtoPspEnum[keyof typeof CreateMerchantAccountWithoutMerchantIdDtoPspEnum];
|
|
112
|
+
/**
|
|
113
|
+
* @export
|
|
114
|
+
*/
|
|
115
|
+
export declare const CreateMerchantAccountWithoutMerchantIdDtoCardTypesEnum: {
|
|
116
|
+
readonly Credit: "CREDIT";
|
|
117
|
+
readonly Debit: "DEBIT";
|
|
118
|
+
readonly Prepaid: "PREPAID";
|
|
119
|
+
};
|
|
120
|
+
export type CreateMerchantAccountWithoutMerchantIdDtoCardTypesEnum = typeof CreateMerchantAccountWithoutMerchantIdDtoCardTypesEnum[keyof typeof CreateMerchantAccountWithoutMerchantIdDtoCardTypesEnum];
|
|
121
|
+
/**
|
|
122
|
+
* @export
|
|
123
|
+
*/
|
|
124
|
+
export declare const CreateMerchantAccountWithoutMerchantIdDtoCardSchemesEnum: {
|
|
125
|
+
readonly Visa: "VISA";
|
|
126
|
+
readonly Mastercard: "MASTERCARD";
|
|
127
|
+
readonly Amex: "AMEX";
|
|
128
|
+
readonly Discover: "DISCOVER";
|
|
129
|
+
readonly Jcb: "JCB";
|
|
130
|
+
readonly DinersClub: "DINERS_CLUB";
|
|
131
|
+
readonly Maestro: "MAESTRO";
|
|
132
|
+
};
|
|
133
|
+
export type CreateMerchantAccountWithoutMerchantIdDtoCardSchemesEnum = typeof CreateMerchantAccountWithoutMerchantIdDtoCardSchemesEnum[keyof typeof CreateMerchantAccountWithoutMerchantIdDtoCardSchemesEnum];
|
|
134
|
+
/**
|
|
135
|
+
* @export
|
|
136
|
+
*/
|
|
137
|
+
export declare const CreateMerchantAccountWithoutMerchantIdDtoCurrenciesEnum: {
|
|
138
|
+
readonly Usd: "USD";
|
|
139
|
+
readonly Aud: "AUD";
|
|
140
|
+
readonly Cad: "CAD";
|
|
141
|
+
};
|
|
142
|
+
export type CreateMerchantAccountWithoutMerchantIdDtoCurrenciesEnum = typeof CreateMerchantAccountWithoutMerchantIdDtoCurrenciesEnum[keyof typeof CreateMerchantAccountWithoutMerchantIdDtoCurrenciesEnum];
|
|
143
|
+
/**
|
|
144
|
+
* Check if a given object implements the CreateMerchantAccountWithoutMerchantIdDto interface.
|
|
145
|
+
*/
|
|
146
|
+
export declare function instanceOfCreateMerchantAccountWithoutMerchantIdDto(value: object): boolean;
|
|
147
|
+
export declare function CreateMerchantAccountWithoutMerchantIdDtoFromJSON(json: any): CreateMerchantAccountWithoutMerchantIdDto;
|
|
148
|
+
export declare function CreateMerchantAccountWithoutMerchantIdDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateMerchantAccountWithoutMerchantIdDto;
|
|
149
|
+
export declare function CreateMerchantAccountWithoutMerchantIdDtoToJSON(value?: CreateMerchantAccountWithoutMerchantIdDto | null): any;
|