├── .github ├── dependabot.yml └── workflows │ ├── generate-release-tag.yml │ └── update-status.yml ├── .gitignore ├── .openapi-generator-ignore ├── .openapi-generator ├── FILES └── VERSION ├── LICENSE ├── README.md ├── docs ├── BalanceApi.md ├── Configuration.md ├── CustomerApi.md ├── InvoiceApi.md ├── PaymentMethodApi.md ├── PaymentRequestApi.md ├── PayoutApi.md ├── RefundApi.md ├── TransactionApi.md ├── balance_and_transaction │ ├── Balance.md │ ├── ChannelsCategories.md │ ├── Currency.md │ ├── DateRangeFilter.md │ ├── FeeResponse.md │ ├── LinkItem.md │ ├── ServerError.md │ ├── TransactionId.md │ ├── TransactionResponse.md │ ├── TransactionResponseType.md │ ├── TransactionStatuses.md │ ├── TransactionTypes.md │ ├── TransactionsResponse.md │ └── ValidationError.md ├── customer │ ├── AccountBank.md │ ├── AccountCard.md │ ├── AccountEwallet.md │ ├── AccountOTC.md │ ├── AccountPayLater.md │ ├── AccountQRCode.md │ ├── Address.md │ ├── AddressRequest.md │ ├── AddressStatus.md │ ├── BusinessDetail.md │ ├── CountryCode.md │ ├── CreateCustomer400Response.md │ ├── CreateCustomer400ResponseAllOf.md │ ├── Customer.md │ ├── CustomerRequest.md │ ├── EmploymentDetail.md │ ├── EndCustomerStatus.md │ ├── Error.md │ ├── GetCustomerByReferenceID200Response.md │ ├── GetCustomerByReferenceID400Response.md │ ├── GetCustomerByReferenceID400ResponseAllOf.md │ ├── IdentityAccountRequest.md │ ├── IdentityAccountRequestProperties.md │ ├── IdentityAccountResponse.md │ ├── IdentityAccountResponseProperties.md │ ├── IdentityAccountType.md │ ├── IndividualDetail.md │ ├── KYCDocumentRequest.md │ ├── KYCDocumentResponse.md │ ├── KYCDocumentSubType.md │ ├── KYCDocumentType.md │ ├── PatchCustomer.md │ ├── ResponseDataNotFound.md │ ├── UpdateCustomer400Response.md │ └── UpdateCustomer400ResponseAllOf.md ├── invoice │ ├── AddressObject.md │ ├── AlternativeDisplayItem.md │ ├── BadRequestError.md │ ├── Bank.md │ ├── BankCode.md │ ├── ChannelProperties.md │ ├── ChannelPropertiesCards.md │ ├── ChannelPropertiesCardsInstallmentConfiguration.md │ ├── ChannelPropertiesCardsInstallmentConfigurationAllowedTermsInner.md │ ├── CreateInvoiceRequest.md │ ├── CustomerObject.md │ ├── DirectDebit.md │ ├── DirectDebitType.md │ ├── Ewallet.md │ ├── EwalletType.md │ ├── ForbiddenError.md │ ├── Invoice.md │ ├── InvoiceCallback.md │ ├── InvoiceCallbackItem.md │ ├── InvoiceClientType.md │ ├── InvoiceCurrency.md │ ├── InvoiceError404ResponseDefinition.md │ ├── InvoiceFee.md │ ├── InvoiceItem.md │ ├── InvoiceNotFoundError.md │ ├── InvoicePaymentMethod.md │ ├── InvoiceStatus.md │ ├── NotificationChannel.md │ ├── NotificationPreference.md │ ├── Paylater.md │ ├── PaylaterType.md │ ├── PaymentDetails.md │ ├── QrCode.md │ ├── QrCodeType.md │ ├── RetailOutlet.md │ ├── RetailOutletName.md │ ├── ServerError.md │ └── UnauthorizedError.md ├── payment_method │ ├── BillingInformation.md │ ├── Card.md │ ├── CardChannelCode.md │ ├── CardChannelProperties.md │ ├── CardInstallmentConfiguration.md │ ├── CardParameters.md │ ├── CardParametersCardInformation.md │ ├── CardVerificationResults.md │ ├── CardVerificationResultsThreeDSecure.md │ ├── CreatePaymentMethod409Response.md │ ├── CreatePaymentMethod503Response.md │ ├── DirectDebit.md │ ├── DirectDebitAllOf.md │ ├── DirectDebitBankAccount.md │ ├── DirectDebitChannelCode.md │ ├── DirectDebitChannelProperties.md │ ├── DirectDebitDebitCard.md │ ├── DirectDebitParameters.md │ ├── DirectDebitType.md │ ├── EWallet.md │ ├── EWalletAccount.md │ ├── EWalletChannelCode.md │ ├── EWalletChannelProperties.md │ ├── EWalletParameters.md │ ├── GetAllPaymentMethods400Response.md │ ├── GetAllPaymentMethods403Response.md │ ├── GetAllPaymentMethods404Response.md │ ├── GetAllPaymentMethodsDefaultResponse.md │ ├── OverTheCounter.md │ ├── OverTheCounterChannelCode.md │ ├── OverTheCounterChannelProperties.md │ ├── OverTheCounterChannelPropertiesUpdate.md │ ├── OverTheCounterParameters.md │ ├── OverTheCounterUpdateParameters.md │ ├── PaymentMethod.md │ ├── PaymentMethodAction.md │ ├── PaymentMethodAuthParameters.md │ ├── PaymentMethodCallback.md │ ├── PaymentMethodCountry.md │ ├── PaymentMethodExpireParameters.md │ ├── PaymentMethodList.md │ ├── PaymentMethodParameters.md │ ├── PaymentMethodReusability.md │ ├── PaymentMethodStatus.md │ ├── PaymentMethodType.md │ ├── PaymentMethodUpdateParameters.md │ ├── QRCode.md │ ├── QRCodeChannelCode.md │ ├── QRCodeChannelProperties.md │ ├── QRCodeParameters.md │ ├── SimulatePaymentRequest.md │ ├── TokenizedCardInformation.md │ ├── VirtualAccount.md │ ├── VirtualAccountAllOf.md │ ├── VirtualAccountAlternativeDisplay.md │ ├── VirtualAccountChannelCode.md │ ├── VirtualAccountChannelProperties.md │ ├── VirtualAccountChannelPropertiesPatch.md │ ├── VirtualAccountParameters.md │ └── VirtualAccountUpdateParameters.md ├── payment_request │ ├── Capture.md │ ├── CaptureList.md │ ├── CaptureListResponse.md │ ├── CaptureParameters.md │ ├── Card.md │ ├── CardChannelCode.md │ ├── CardChannelProperties.md │ ├── CardInformation.md │ ├── CardInstallmentConfiguration.md │ ├── CardParameters.md │ ├── CardVerificationResults.md │ ├── CardVerificationResultsThreeDSecure.md │ ├── DirectDebit.md │ ├── DirectDebitAllOf.md │ ├── DirectDebitBankAccount.md │ ├── DirectDebitChannelCode.md │ ├── DirectDebitChannelProperties.md │ ├── DirectDebitChannelPropertiesBankAccount.md │ ├── DirectDebitChannelPropertiesBankRedirect.md │ ├── DirectDebitChannelPropertiesDebitCard.md │ ├── DirectDebitDebitCard.md │ ├── DirectDebitParameters.md │ ├── DirectDebitType.md │ ├── EWallet.md │ ├── EWalletAccount.md │ ├── EWalletAllOf.md │ ├── EWalletChannelCode.md │ ├── EWalletChannelProperties.md │ ├── EWalletParameters.md │ ├── Error.md │ ├── InvoicePartnerMetadata.md │ ├── OverTheCounter.md │ ├── OverTheCounterChannelCode.md │ ├── OverTheCounterChannelProperties.md │ ├── OverTheCounterParameters.md │ ├── PaymentCallback.md │ ├── PaymentCallbackData.md │ ├── PaymentMethod.md │ ├── PaymentMethodParameters.md │ ├── PaymentMethodReusability.md │ ├── PaymentMethodStatus.md │ ├── PaymentMethodType.md │ ├── PaymentRequest.md │ ├── PaymentRequestAction.md │ ├── PaymentRequestAuthParameters.md │ ├── PaymentRequestBasket.md │ ├── PaymentRequestBasketItem.md │ ├── PaymentRequestCaptureMethod.md │ ├── PaymentRequestCardVerificationResults.md │ ├── PaymentRequestCardVerificationResultsThreeDeeSecure.md │ ├── PaymentRequestChannelProperties.md │ ├── PaymentRequestCountry.md │ ├── PaymentRequestCurrency.md │ ├── PaymentRequestInitiator.md │ ├── PaymentRequestListResponse.md │ ├── PaymentRequestParameters.md │ ├── PaymentRequestParametersChannelProperties.md │ ├── PaymentRequestParametersChannelPropertiesAllOf.md │ ├── PaymentRequestShippingInformation.md │ ├── PaymentRequestStatus.md │ ├── PaymentSimulation.md │ ├── QRCode.md │ ├── QRCodeChannelCode.md │ ├── QRCodeChannelProperties.md │ ├── QRCodeParameters.md │ ├── VirtualAccount.md │ ├── VirtualAccountAllOf.md │ ├── VirtualAccountAlternativeDisplay.md │ ├── VirtualAccountChannelCode.md │ ├── VirtualAccountChannelProperties.md │ └── VirtualAccountParameters.md ├── payout │ ├── Channel.md │ ├── ChannelAccountType.md │ ├── ChannelAmountLimits.md │ ├── ChannelCategory.md │ ├── CreatePayoutRequest.md │ ├── DigitalPayoutChannelProperties.md │ ├── Error.md │ ├── ErrorErrorsInner.md │ ├── GetPayouts200Response.md │ ├── GetPayouts200ResponseDataInner.md │ ├── GetPayouts200ResponseLinks.md │ ├── Payout.md │ ├── PayoutAllOf.md │ └── ReceiptNotification.md └── refund │ ├── CreateRefund.md │ ├── CreateRefund400Response.md │ ├── CreateRefund403Response.md │ ├── CreateRefund404Response.md │ ├── CreateRefund409Response.md │ ├── CreateRefund503Response.md │ ├── GetAllRefundsDefaultResponse.md │ ├── Refund.md │ ├── RefundCallback.md │ ├── RefundCallbackData.md │ └── RefundList.md ├── images └── header.jpg ├── pyproject.toml ├── requirements.txt ├── setup.cfg ├── setup.py ├── test-requirements.txt ├── test ├── .env.test ├── __init__.py ├── invoice_api_test.py ├── payment_api_test.py └── utils │ ├── __init__.py │ └── test_utils.py ├── tox.ini └── xendit ├── __init__.py ├── api_client.py ├── apis └── __init__.py ├── balance_and_transaction ├── __init__.py ├── balance_api.py ├── model │ ├── __init__.py │ ├── balance.py │ ├── channels_categories.py │ ├── currency.py │ ├── date_range_filter.py │ ├── fee_response.py │ ├── link_item.py │ ├── server_error.py │ ├── transaction_id.py │ ├── transaction_response.py │ ├── transaction_response_type.py │ ├── transaction_statuses.py │ ├── transaction_types.py │ ├── transactions_response.py │ └── validation_error.py └── transaction_api.py ├── configuration.py ├── customer ├── __init__.py ├── customer_api.py └── model │ ├── __init__.py │ ├── account_bank.py │ ├── account_card.py │ ├── account_ewallet.py │ ├── account_otc.py │ ├── account_pay_later.py │ ├── account_qr_code.py │ ├── address.py │ ├── address_request.py │ ├── address_status.py │ ├── business_detail.py │ ├── country_code.py │ ├── create_customer400_response.py │ ├── create_customer400_response_all_of.py │ ├── customer.py │ ├── customer_request.py │ ├── employment_detail.py │ ├── end_customer_status.py │ ├── error.py │ ├── get_customer_by_reference_id200_response.py │ ├── get_customer_by_reference_id400_response.py │ ├── get_customer_by_reference_id400_response_all_of.py │ ├── identity_account_request.py │ ├── identity_account_request_properties.py │ ├── identity_account_response.py │ ├── identity_account_response_properties.py │ ├── identity_account_type.py │ ├── individual_detail.py │ ├── kyc_document_request.py │ ├── kyc_document_response.py │ ├── kyc_document_sub_type.py │ ├── kyc_document_type.py │ ├── patch_customer.py │ ├── response_data_not_found.py │ ├── update_customer400_response.py │ └── update_customer400_response_all_of.py ├── exceptions.py ├── invoice ├── __init__.py ├── invoice_api.py └── model │ ├── __init__.py │ ├── address_object.py │ ├── alternative_display_item.py │ ├── bad_request_error.py │ ├── bank.py │ ├── bank_code.py │ ├── channel_properties.py │ ├── channel_properties_cards.py │ ├── channel_properties_cards_installment_configuration.py │ ├── channel_properties_cards_installment_configuration_allowed_terms_inner.py │ ├── create_invoice_request.py │ ├── customer_object.py │ ├── direct_debit.py │ ├── direct_debit_type.py │ ├── ewallet.py │ ├── ewallet_type.py │ ├── forbidden_error.py │ ├── invoice.py │ ├── invoice_callback.py │ ├── invoice_callback_item.py │ ├── invoice_client_type.py │ ├── invoice_currency.py │ ├── invoice_error404_response_definition.py │ ├── invoice_fee.py │ ├── invoice_item.py │ ├── invoice_not_found_error.py │ ├── invoice_payment_method.py │ ├── invoice_status.py │ ├── notification_channel.py │ ├── notification_preference.py │ ├── paylater.py │ ├── paylater_type.py │ ├── payment_details.py │ ├── qr_code.py │ ├── qr_code_type.py │ ├── retail_outlet.py │ ├── retail_outlet_name.py │ ├── server_error.py │ └── unauthorized_error.py ├── model_utils.py ├── models └── __init__.py ├── payment_method ├── __init__.py ├── model │ ├── __init__.py │ ├── billing_information.py │ ├── card.py │ ├── card_channel_code.py │ ├── card_channel_properties.py │ ├── card_installment_configuration.py │ ├── card_parameters.py │ ├── card_parameters_card_information.py │ ├── card_verification_results.py │ ├── card_verification_results_three_d_secure.py │ ├── create_payment_method409_response.py │ ├── create_payment_method503_response.py │ ├── direct_debit.py │ ├── direct_debit_all_of.py │ ├── direct_debit_bank_account.py │ ├── direct_debit_channel_code.py │ ├── direct_debit_channel_properties.py │ ├── direct_debit_debit_card.py │ ├── direct_debit_parameters.py │ ├── direct_debit_type.py │ ├── e_wallet.py │ ├── e_wallet_account.py │ ├── e_wallet_channel_code.py │ ├── e_wallet_channel_properties.py │ ├── e_wallet_parameters.py │ ├── get_all_payment_methods400_response.py │ ├── get_all_payment_methods403_response.py │ ├── get_all_payment_methods404_response.py │ ├── get_all_payment_methods_default_response.py │ ├── over_the_counter.py │ ├── over_the_counter_channel_code.py │ ├── over_the_counter_channel_properties.py │ ├── over_the_counter_channel_properties_update.py │ ├── over_the_counter_parameters.py │ ├── over_the_counter_update_parameters.py │ ├── payment_method.py │ ├── payment_method_action.py │ ├── payment_method_auth_parameters.py │ ├── payment_method_callback.py │ ├── payment_method_country.py │ ├── payment_method_expire_parameters.py │ ├── payment_method_list.py │ ├── payment_method_parameters.py │ ├── payment_method_reusability.py │ ├── payment_method_status.py │ ├── payment_method_type.py │ ├── payment_method_update_parameters.py │ ├── qr_code.py │ ├── qr_code_channel_code.py │ ├── qr_code_channel_properties.py │ ├── qr_code_parameters.py │ ├── simulate_payment_request.py │ ├── tokenized_card_information.py │ ├── virtual_account.py │ ├── virtual_account_all_of.py │ ├── virtual_account_alternative_display.py │ ├── virtual_account_channel_code.py │ ├── virtual_account_channel_properties.py │ ├── virtual_account_channel_properties_patch.py │ ├── virtual_account_parameters.py │ └── virtual_account_update_parameters.py └── payment_method_api.py ├── payment_request ├── __init__.py ├── model │ ├── __init__.py │ ├── capture.py │ ├── capture_list.py │ ├── capture_list_response.py │ ├── capture_parameters.py │ ├── card.py │ ├── card_channel_code.py │ ├── card_channel_properties.py │ ├── card_information.py │ ├── card_installment_configuration.py │ ├── card_parameters.py │ ├── card_verification_results.py │ ├── card_verification_results_three_d_secure.py │ ├── direct_debit.py │ ├── direct_debit_all_of.py │ ├── direct_debit_bank_account.py │ ├── direct_debit_channel_code.py │ ├── direct_debit_channel_properties.py │ ├── direct_debit_channel_properties_bank_account.py │ ├── direct_debit_channel_properties_bank_redirect.py │ ├── direct_debit_channel_properties_debit_card.py │ ├── direct_debit_debit_card.py │ ├── direct_debit_parameters.py │ ├── direct_debit_type.py │ ├── e_wallet.py │ ├── e_wallet_account.py │ ├── e_wallet_all_of.py │ ├── e_wallet_channel_code.py │ ├── e_wallet_channel_properties.py │ ├── e_wallet_parameters.py │ ├── error.py │ ├── invoice_partner_metadata.py │ ├── over_the_counter.py │ ├── over_the_counter_channel_code.py │ ├── over_the_counter_channel_properties.py │ ├── over_the_counter_parameters.py │ ├── payment_callback.py │ ├── payment_callback_data.py │ ├── payment_method.py │ ├── payment_method_parameters.py │ ├── payment_method_reusability.py │ ├── payment_method_status.py │ ├── payment_method_type.py │ ├── payment_request.py │ ├── payment_request_action.py │ ├── payment_request_auth_parameters.py │ ├── payment_request_basket.py │ ├── payment_request_basket_item.py │ ├── payment_request_capture_method.py │ ├── payment_request_card_verification_results.py │ ├── payment_request_card_verification_results_three_dee_secure.py │ ├── payment_request_channel_properties.py │ ├── payment_request_country.py │ ├── payment_request_currency.py │ ├── payment_request_initiator.py │ ├── payment_request_list_response.py │ ├── payment_request_parameters.py │ ├── payment_request_parameters_channel_properties.py │ ├── payment_request_parameters_channel_properties_all_of.py │ ├── payment_request_shipping_information.py │ ├── payment_request_status.py │ ├── payment_simulation.py │ ├── qr_code.py │ ├── qr_code_channel_code.py │ ├── qr_code_channel_properties.py │ ├── qr_code_parameters.py │ ├── virtual_account.py │ ├── virtual_account_all_of.py │ ├── virtual_account_alternative_display.py │ ├── virtual_account_channel_code.py │ ├── virtual_account_channel_properties.py │ └── virtual_account_parameters.py └── payment_request_api.py ├── payout ├── __init__.py ├── model │ ├── __init__.py │ ├── channel.py │ ├── channel_account_type.py │ ├── channel_amount_limits.py │ ├── channel_category.py │ ├── create_payout_request.py │ ├── digital_payout_channel_properties.py │ ├── error.py │ ├── error_errors_inner.py │ ├── get_payouts200_response.py │ ├── get_payouts200_response_data_inner.py │ ├── get_payouts200_response_links.py │ ├── payout.py │ ├── payout_all_of.py │ └── receipt_notification.py └── payout_api.py ├── refund ├── __init__.py ├── model │ ├── __init__.py │ ├── create_refund.py │ ├── create_refund400_response.py │ ├── create_refund403_response.py │ ├── create_refund404_response.py │ ├── create_refund409_response.py │ ├── create_refund503_response.py │ ├── get_all_refunds_default_response.py │ ├── refund.py │ ├── refund_callback.py │ ├── refund_callback_data.py │ └── refund_list.py └── refund_api.py └── rest.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/generate-release-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/.github/workflows/generate-release-tag.yml -------------------------------------------------------------------------------- /.github/workflows/update-status.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/.github/workflows/update-status.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.openapi-generator-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/.openapi-generator-ignore -------------------------------------------------------------------------------- /.openapi-generator/FILES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/.openapi-generator/FILES -------------------------------------------------------------------------------- /.openapi-generator/VERSION: -------------------------------------------------------------------------------- 1 | 6.6.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/README.md -------------------------------------------------------------------------------- /docs/BalanceApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/BalanceApi.md -------------------------------------------------------------------------------- /docs/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/Configuration.md -------------------------------------------------------------------------------- /docs/CustomerApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/CustomerApi.md -------------------------------------------------------------------------------- /docs/InvoiceApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/InvoiceApi.md -------------------------------------------------------------------------------- /docs/PaymentMethodApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/PaymentMethodApi.md -------------------------------------------------------------------------------- /docs/PaymentRequestApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/PaymentRequestApi.md -------------------------------------------------------------------------------- /docs/PayoutApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/PayoutApi.md -------------------------------------------------------------------------------- /docs/RefundApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/RefundApi.md -------------------------------------------------------------------------------- /docs/TransactionApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/TransactionApi.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/Balance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/Balance.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/ChannelsCategories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/ChannelsCategories.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/Currency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/Currency.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/DateRangeFilter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/DateRangeFilter.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/FeeResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/FeeResponse.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/LinkItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/LinkItem.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/ServerError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/ServerError.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/TransactionId.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/TransactionId.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/TransactionResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/TransactionResponse.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/TransactionResponseType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/TransactionResponseType.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/TransactionStatuses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/TransactionStatuses.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/TransactionTypes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/TransactionTypes.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/TransactionsResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/TransactionsResponse.md -------------------------------------------------------------------------------- /docs/balance_and_transaction/ValidationError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/balance_and_transaction/ValidationError.md -------------------------------------------------------------------------------- /docs/customer/AccountBank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AccountBank.md -------------------------------------------------------------------------------- /docs/customer/AccountCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AccountCard.md -------------------------------------------------------------------------------- /docs/customer/AccountEwallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AccountEwallet.md -------------------------------------------------------------------------------- /docs/customer/AccountOTC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AccountOTC.md -------------------------------------------------------------------------------- /docs/customer/AccountPayLater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AccountPayLater.md -------------------------------------------------------------------------------- /docs/customer/AccountQRCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AccountQRCode.md -------------------------------------------------------------------------------- /docs/customer/Address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/Address.md -------------------------------------------------------------------------------- /docs/customer/AddressRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AddressRequest.md -------------------------------------------------------------------------------- /docs/customer/AddressStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/AddressStatus.md -------------------------------------------------------------------------------- /docs/customer/BusinessDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/BusinessDetail.md -------------------------------------------------------------------------------- /docs/customer/CountryCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/CountryCode.md -------------------------------------------------------------------------------- /docs/customer/CreateCustomer400Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/CreateCustomer400Response.md -------------------------------------------------------------------------------- /docs/customer/CreateCustomer400ResponseAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/CreateCustomer400ResponseAllOf.md -------------------------------------------------------------------------------- /docs/customer/Customer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/Customer.md -------------------------------------------------------------------------------- /docs/customer/CustomerRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/CustomerRequest.md -------------------------------------------------------------------------------- /docs/customer/EmploymentDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/EmploymentDetail.md -------------------------------------------------------------------------------- /docs/customer/EndCustomerStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/EndCustomerStatus.md -------------------------------------------------------------------------------- /docs/customer/Error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/Error.md -------------------------------------------------------------------------------- /docs/customer/GetCustomerByReferenceID200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/GetCustomerByReferenceID200Response.md -------------------------------------------------------------------------------- /docs/customer/GetCustomerByReferenceID400Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/GetCustomerByReferenceID400Response.md -------------------------------------------------------------------------------- /docs/customer/GetCustomerByReferenceID400ResponseAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/GetCustomerByReferenceID400ResponseAllOf.md -------------------------------------------------------------------------------- /docs/customer/IdentityAccountRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/IdentityAccountRequest.md -------------------------------------------------------------------------------- /docs/customer/IdentityAccountRequestProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/IdentityAccountRequestProperties.md -------------------------------------------------------------------------------- /docs/customer/IdentityAccountResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/IdentityAccountResponse.md -------------------------------------------------------------------------------- /docs/customer/IdentityAccountResponseProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/IdentityAccountResponseProperties.md -------------------------------------------------------------------------------- /docs/customer/IdentityAccountType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/IdentityAccountType.md -------------------------------------------------------------------------------- /docs/customer/IndividualDetail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/IndividualDetail.md -------------------------------------------------------------------------------- /docs/customer/KYCDocumentRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/KYCDocumentRequest.md -------------------------------------------------------------------------------- /docs/customer/KYCDocumentResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/KYCDocumentResponse.md -------------------------------------------------------------------------------- /docs/customer/KYCDocumentSubType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/KYCDocumentSubType.md -------------------------------------------------------------------------------- /docs/customer/KYCDocumentType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/KYCDocumentType.md -------------------------------------------------------------------------------- /docs/customer/PatchCustomer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/PatchCustomer.md -------------------------------------------------------------------------------- /docs/customer/ResponseDataNotFound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/ResponseDataNotFound.md -------------------------------------------------------------------------------- /docs/customer/UpdateCustomer400Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/UpdateCustomer400Response.md -------------------------------------------------------------------------------- /docs/customer/UpdateCustomer400ResponseAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/customer/UpdateCustomer400ResponseAllOf.md -------------------------------------------------------------------------------- /docs/invoice/AddressObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/AddressObject.md -------------------------------------------------------------------------------- /docs/invoice/AlternativeDisplayItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/AlternativeDisplayItem.md -------------------------------------------------------------------------------- /docs/invoice/BadRequestError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/BadRequestError.md -------------------------------------------------------------------------------- /docs/invoice/Bank.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/Bank.md -------------------------------------------------------------------------------- /docs/invoice/BankCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/BankCode.md -------------------------------------------------------------------------------- /docs/invoice/ChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/ChannelProperties.md -------------------------------------------------------------------------------- /docs/invoice/ChannelPropertiesCards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/ChannelPropertiesCards.md -------------------------------------------------------------------------------- /docs/invoice/ChannelPropertiesCardsInstallmentConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/ChannelPropertiesCardsInstallmentConfiguration.md -------------------------------------------------------------------------------- /docs/invoice/ChannelPropertiesCardsInstallmentConfigurationAllowedTermsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/ChannelPropertiesCardsInstallmentConfigurationAllowedTermsInner.md -------------------------------------------------------------------------------- /docs/invoice/CreateInvoiceRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/CreateInvoiceRequest.md -------------------------------------------------------------------------------- /docs/invoice/CustomerObject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/CustomerObject.md -------------------------------------------------------------------------------- /docs/invoice/DirectDebit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/DirectDebit.md -------------------------------------------------------------------------------- /docs/invoice/DirectDebitType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/DirectDebitType.md -------------------------------------------------------------------------------- /docs/invoice/Ewallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/Ewallet.md -------------------------------------------------------------------------------- /docs/invoice/EwalletType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/EwalletType.md -------------------------------------------------------------------------------- /docs/invoice/ForbiddenError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/ForbiddenError.md -------------------------------------------------------------------------------- /docs/invoice/Invoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/Invoice.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceCallback.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceCallbackItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceCallbackItem.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceClientType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceClientType.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceCurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceCurrency.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceError404ResponseDefinition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceError404ResponseDefinition.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceFee.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceFee.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceItem.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceNotFoundError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceNotFoundError.md -------------------------------------------------------------------------------- /docs/invoice/InvoicePaymentMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoicePaymentMethod.md -------------------------------------------------------------------------------- /docs/invoice/InvoiceStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/InvoiceStatus.md -------------------------------------------------------------------------------- /docs/invoice/NotificationChannel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/NotificationChannel.md -------------------------------------------------------------------------------- /docs/invoice/NotificationPreference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/NotificationPreference.md -------------------------------------------------------------------------------- /docs/invoice/Paylater.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/Paylater.md -------------------------------------------------------------------------------- /docs/invoice/PaylaterType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/PaylaterType.md -------------------------------------------------------------------------------- /docs/invoice/PaymentDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/PaymentDetails.md -------------------------------------------------------------------------------- /docs/invoice/QrCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/QrCode.md -------------------------------------------------------------------------------- /docs/invoice/QrCodeType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/QrCodeType.md -------------------------------------------------------------------------------- /docs/invoice/RetailOutlet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/RetailOutlet.md -------------------------------------------------------------------------------- /docs/invoice/RetailOutletName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/RetailOutletName.md -------------------------------------------------------------------------------- /docs/invoice/ServerError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/ServerError.md -------------------------------------------------------------------------------- /docs/invoice/UnauthorizedError.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/invoice/UnauthorizedError.md -------------------------------------------------------------------------------- /docs/payment_method/BillingInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/BillingInformation.md -------------------------------------------------------------------------------- /docs/payment_method/Card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/Card.md -------------------------------------------------------------------------------- /docs/payment_method/CardChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CardChannelCode.md -------------------------------------------------------------------------------- /docs/payment_method/CardChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CardChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_method/CardInstallmentConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CardInstallmentConfiguration.md -------------------------------------------------------------------------------- /docs/payment_method/CardParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CardParameters.md -------------------------------------------------------------------------------- /docs/payment_method/CardParametersCardInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CardParametersCardInformation.md -------------------------------------------------------------------------------- /docs/payment_method/CardVerificationResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CardVerificationResults.md -------------------------------------------------------------------------------- /docs/payment_method/CardVerificationResultsThreeDSecure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CardVerificationResultsThreeDSecure.md -------------------------------------------------------------------------------- /docs/payment_method/CreatePaymentMethod409Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CreatePaymentMethod409Response.md -------------------------------------------------------------------------------- /docs/payment_method/CreatePaymentMethod503Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/CreatePaymentMethod503Response.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebit.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebitAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebitAllOf.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebitBankAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebitBankAccount.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebitChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebitChannelCode.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebitChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebitChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebitDebitCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebitDebitCard.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebitParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebitParameters.md -------------------------------------------------------------------------------- /docs/payment_method/DirectDebitType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/DirectDebitType.md -------------------------------------------------------------------------------- /docs/payment_method/EWallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/EWallet.md -------------------------------------------------------------------------------- /docs/payment_method/EWalletAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/EWalletAccount.md -------------------------------------------------------------------------------- /docs/payment_method/EWalletChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/EWalletChannelCode.md -------------------------------------------------------------------------------- /docs/payment_method/EWalletChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/EWalletChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_method/EWalletParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/EWalletParameters.md -------------------------------------------------------------------------------- /docs/payment_method/GetAllPaymentMethods400Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/GetAllPaymentMethods400Response.md -------------------------------------------------------------------------------- /docs/payment_method/GetAllPaymentMethods403Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/GetAllPaymentMethods403Response.md -------------------------------------------------------------------------------- /docs/payment_method/GetAllPaymentMethods404Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/GetAllPaymentMethods404Response.md -------------------------------------------------------------------------------- /docs/payment_method/GetAllPaymentMethodsDefaultResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/GetAllPaymentMethodsDefaultResponse.md -------------------------------------------------------------------------------- /docs/payment_method/OverTheCounter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/OverTheCounter.md -------------------------------------------------------------------------------- /docs/payment_method/OverTheCounterChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/OverTheCounterChannelCode.md -------------------------------------------------------------------------------- /docs/payment_method/OverTheCounterChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/OverTheCounterChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_method/OverTheCounterChannelPropertiesUpdate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/OverTheCounterChannelPropertiesUpdate.md -------------------------------------------------------------------------------- /docs/payment_method/OverTheCounterParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/OverTheCounterParameters.md -------------------------------------------------------------------------------- /docs/payment_method/OverTheCounterUpdateParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/OverTheCounterUpdateParameters.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethod.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodAction.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodAuthParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodAuthParameters.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodCallback.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodCountry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodCountry.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodExpireParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodExpireParameters.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodList.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodParameters.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodReusability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodReusability.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodStatus.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodType.md -------------------------------------------------------------------------------- /docs/payment_method/PaymentMethodUpdateParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/PaymentMethodUpdateParameters.md -------------------------------------------------------------------------------- /docs/payment_method/QRCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/QRCode.md -------------------------------------------------------------------------------- /docs/payment_method/QRCodeChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/QRCodeChannelCode.md -------------------------------------------------------------------------------- /docs/payment_method/QRCodeChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/QRCodeChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_method/QRCodeParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/QRCodeParameters.md -------------------------------------------------------------------------------- /docs/payment_method/SimulatePaymentRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/SimulatePaymentRequest.md -------------------------------------------------------------------------------- /docs/payment_method/TokenizedCardInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/TokenizedCardInformation.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccount.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccountAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccountAllOf.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccountAlternativeDisplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccountAlternativeDisplay.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccountChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccountChannelCode.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccountChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccountChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccountChannelPropertiesPatch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccountChannelPropertiesPatch.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccountParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccountParameters.md -------------------------------------------------------------------------------- /docs/payment_method/VirtualAccountUpdateParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_method/VirtualAccountUpdateParameters.md -------------------------------------------------------------------------------- /docs/payment_request/Capture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/Capture.md -------------------------------------------------------------------------------- /docs/payment_request/CaptureList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CaptureList.md -------------------------------------------------------------------------------- /docs/payment_request/CaptureListResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CaptureListResponse.md -------------------------------------------------------------------------------- /docs/payment_request/CaptureParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CaptureParameters.md -------------------------------------------------------------------------------- /docs/payment_request/Card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/Card.md -------------------------------------------------------------------------------- /docs/payment_request/CardChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CardChannelCode.md -------------------------------------------------------------------------------- /docs/payment_request/CardChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CardChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/CardInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CardInformation.md -------------------------------------------------------------------------------- /docs/payment_request/CardInstallmentConfiguration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CardInstallmentConfiguration.md -------------------------------------------------------------------------------- /docs/payment_request/CardParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CardParameters.md -------------------------------------------------------------------------------- /docs/payment_request/CardVerificationResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CardVerificationResults.md -------------------------------------------------------------------------------- /docs/payment_request/CardVerificationResultsThreeDSecure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/CardVerificationResultsThreeDSecure.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebit.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitAllOf.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitBankAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitBankAccount.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitChannelCode.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitChannelPropertiesBankAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitChannelPropertiesBankAccount.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitChannelPropertiesBankRedirect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitChannelPropertiesBankRedirect.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitChannelPropertiesDebitCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitChannelPropertiesDebitCard.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitDebitCard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitDebitCard.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitParameters.md -------------------------------------------------------------------------------- /docs/payment_request/DirectDebitType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/DirectDebitType.md -------------------------------------------------------------------------------- /docs/payment_request/EWallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/EWallet.md -------------------------------------------------------------------------------- /docs/payment_request/EWalletAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/EWalletAccount.md -------------------------------------------------------------------------------- /docs/payment_request/EWalletAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/EWalletAllOf.md -------------------------------------------------------------------------------- /docs/payment_request/EWalletChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/EWalletChannelCode.md -------------------------------------------------------------------------------- /docs/payment_request/EWalletChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/EWalletChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/EWalletParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/EWalletParameters.md -------------------------------------------------------------------------------- /docs/payment_request/Error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/Error.md -------------------------------------------------------------------------------- /docs/payment_request/InvoicePartnerMetadata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/InvoicePartnerMetadata.md -------------------------------------------------------------------------------- /docs/payment_request/OverTheCounter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/OverTheCounter.md -------------------------------------------------------------------------------- /docs/payment_request/OverTheCounterChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/OverTheCounterChannelCode.md -------------------------------------------------------------------------------- /docs/payment_request/OverTheCounterChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/OverTheCounterChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/OverTheCounterParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/OverTheCounterParameters.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentCallback.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentCallbackData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentCallbackData.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentMethod.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentMethodParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentMethodParameters.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentMethodReusability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentMethodReusability.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentMethodStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentMethodStatus.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentMethodType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentMethodType.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequest.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestAction.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestAuthParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestAuthParameters.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestBasket.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestBasket.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestBasketItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestBasketItem.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestCaptureMethod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestCaptureMethod.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestCardVerificationResults.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestCardVerificationResults.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestCardVerificationResultsThreeDeeSecure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestCardVerificationResultsThreeDeeSecure.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestCountry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestCountry.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestCurrency.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestCurrency.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestInitiator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestInitiator.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestListResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestListResponse.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestParameters.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestParametersChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestParametersChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestParametersChannelPropertiesAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestParametersChannelPropertiesAllOf.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestShippingInformation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestShippingInformation.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentRequestStatus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentRequestStatus.md -------------------------------------------------------------------------------- /docs/payment_request/PaymentSimulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/PaymentSimulation.md -------------------------------------------------------------------------------- /docs/payment_request/QRCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/QRCode.md -------------------------------------------------------------------------------- /docs/payment_request/QRCodeChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/QRCodeChannelCode.md -------------------------------------------------------------------------------- /docs/payment_request/QRCodeChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/QRCodeChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/QRCodeParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/QRCodeParameters.md -------------------------------------------------------------------------------- /docs/payment_request/VirtualAccount.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/VirtualAccount.md -------------------------------------------------------------------------------- /docs/payment_request/VirtualAccountAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/VirtualAccountAllOf.md -------------------------------------------------------------------------------- /docs/payment_request/VirtualAccountAlternativeDisplay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/VirtualAccountAlternativeDisplay.md -------------------------------------------------------------------------------- /docs/payment_request/VirtualAccountChannelCode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/VirtualAccountChannelCode.md -------------------------------------------------------------------------------- /docs/payment_request/VirtualAccountChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/VirtualAccountChannelProperties.md -------------------------------------------------------------------------------- /docs/payment_request/VirtualAccountParameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payment_request/VirtualAccountParameters.md -------------------------------------------------------------------------------- /docs/payout/Channel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/Channel.md -------------------------------------------------------------------------------- /docs/payout/ChannelAccountType.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/ChannelAccountType.md -------------------------------------------------------------------------------- /docs/payout/ChannelAmountLimits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/ChannelAmountLimits.md -------------------------------------------------------------------------------- /docs/payout/ChannelCategory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/ChannelCategory.md -------------------------------------------------------------------------------- /docs/payout/CreatePayoutRequest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/CreatePayoutRequest.md -------------------------------------------------------------------------------- /docs/payout/DigitalPayoutChannelProperties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/DigitalPayoutChannelProperties.md -------------------------------------------------------------------------------- /docs/payout/Error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/Error.md -------------------------------------------------------------------------------- /docs/payout/ErrorErrorsInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/ErrorErrorsInner.md -------------------------------------------------------------------------------- /docs/payout/GetPayouts200Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/GetPayouts200Response.md -------------------------------------------------------------------------------- /docs/payout/GetPayouts200ResponseDataInner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/GetPayouts200ResponseDataInner.md -------------------------------------------------------------------------------- /docs/payout/GetPayouts200ResponseLinks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/GetPayouts200ResponseLinks.md -------------------------------------------------------------------------------- /docs/payout/Payout.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/Payout.md -------------------------------------------------------------------------------- /docs/payout/PayoutAllOf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/PayoutAllOf.md -------------------------------------------------------------------------------- /docs/payout/ReceiptNotification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/payout/ReceiptNotification.md -------------------------------------------------------------------------------- /docs/refund/CreateRefund.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/CreateRefund.md -------------------------------------------------------------------------------- /docs/refund/CreateRefund400Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/CreateRefund400Response.md -------------------------------------------------------------------------------- /docs/refund/CreateRefund403Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/CreateRefund403Response.md -------------------------------------------------------------------------------- /docs/refund/CreateRefund404Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/CreateRefund404Response.md -------------------------------------------------------------------------------- /docs/refund/CreateRefund409Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/CreateRefund409Response.md -------------------------------------------------------------------------------- /docs/refund/CreateRefund503Response.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/CreateRefund503Response.md -------------------------------------------------------------------------------- /docs/refund/GetAllRefundsDefaultResponse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/GetAllRefundsDefaultResponse.md -------------------------------------------------------------------------------- /docs/refund/Refund.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/Refund.md -------------------------------------------------------------------------------- /docs/refund/RefundCallback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/RefundCallback.md -------------------------------------------------------------------------------- /docs/refund/RefundCallbackData.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/RefundCallbackData.md -------------------------------------------------------------------------------- /docs/refund/RefundList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/docs/refund/RefundList.md -------------------------------------------------------------------------------- /images/header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/images/header.jpg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=99 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest-cov>=2.8.1 2 | -------------------------------------------------------------------------------- /test/.env.test: -------------------------------------------------------------------------------- 1 | IGNORED_ERRORCODE=[INVALID_API_KEY] 2 | -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/invoice_api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/test/invoice_api_test.py -------------------------------------------------------------------------------- /test/payment_api_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/test/payment_api_test.py -------------------------------------------------------------------------------- /test/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/test/utils/test_utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/tox.ini -------------------------------------------------------------------------------- /xendit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/__init__.py -------------------------------------------------------------------------------- /xendit/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/api_client.py -------------------------------------------------------------------------------- /xendit/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/apis/__init__.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/__init__.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/balance_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/balance_api.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/__init__.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/balance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/balance.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/channels_categories.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/channels_categories.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/currency.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/date_range_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/date_range_filter.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/fee_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/fee_response.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/link_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/link_item.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/server_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/server_error.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/transaction_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/transaction_id.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/transaction_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/transaction_response.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/transaction_response_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/transaction_response_type.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/transaction_statuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/transaction_statuses.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/transaction_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/transaction_types.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/transactions_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/transactions_response.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/model/validation_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/model/validation_error.py -------------------------------------------------------------------------------- /xendit/balance_and_transaction/transaction_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/balance_and_transaction/transaction_api.py -------------------------------------------------------------------------------- /xendit/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/configuration.py -------------------------------------------------------------------------------- /xendit/customer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/__init__.py -------------------------------------------------------------------------------- /xendit/customer/customer_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/customer_api.py -------------------------------------------------------------------------------- /xendit/customer/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/__init__.py -------------------------------------------------------------------------------- /xendit/customer/model/account_bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/account_bank.py -------------------------------------------------------------------------------- /xendit/customer/model/account_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/account_card.py -------------------------------------------------------------------------------- /xendit/customer/model/account_ewallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/account_ewallet.py -------------------------------------------------------------------------------- /xendit/customer/model/account_otc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/account_otc.py -------------------------------------------------------------------------------- /xendit/customer/model/account_pay_later.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/account_pay_later.py -------------------------------------------------------------------------------- /xendit/customer/model/account_qr_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/account_qr_code.py -------------------------------------------------------------------------------- /xendit/customer/model/address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/address.py -------------------------------------------------------------------------------- /xendit/customer/model/address_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/address_request.py -------------------------------------------------------------------------------- /xendit/customer/model/address_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/address_status.py -------------------------------------------------------------------------------- /xendit/customer/model/business_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/business_detail.py -------------------------------------------------------------------------------- /xendit/customer/model/country_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/country_code.py -------------------------------------------------------------------------------- /xendit/customer/model/create_customer400_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/create_customer400_response.py -------------------------------------------------------------------------------- /xendit/customer/model/create_customer400_response_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/create_customer400_response_all_of.py -------------------------------------------------------------------------------- /xendit/customer/model/customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/customer.py -------------------------------------------------------------------------------- /xendit/customer/model/customer_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/customer_request.py -------------------------------------------------------------------------------- /xendit/customer/model/employment_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/employment_detail.py -------------------------------------------------------------------------------- /xendit/customer/model/end_customer_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/end_customer_status.py -------------------------------------------------------------------------------- /xendit/customer/model/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/error.py -------------------------------------------------------------------------------- /xendit/customer/model/get_customer_by_reference_id200_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/get_customer_by_reference_id200_response.py -------------------------------------------------------------------------------- /xendit/customer/model/get_customer_by_reference_id400_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/get_customer_by_reference_id400_response.py -------------------------------------------------------------------------------- /xendit/customer/model/get_customer_by_reference_id400_response_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/get_customer_by_reference_id400_response_all_of.py -------------------------------------------------------------------------------- /xendit/customer/model/identity_account_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/identity_account_request.py -------------------------------------------------------------------------------- /xendit/customer/model/identity_account_request_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/identity_account_request_properties.py -------------------------------------------------------------------------------- /xendit/customer/model/identity_account_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/identity_account_response.py -------------------------------------------------------------------------------- /xendit/customer/model/identity_account_response_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/identity_account_response_properties.py -------------------------------------------------------------------------------- /xendit/customer/model/identity_account_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/identity_account_type.py -------------------------------------------------------------------------------- /xendit/customer/model/individual_detail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/individual_detail.py -------------------------------------------------------------------------------- /xendit/customer/model/kyc_document_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/kyc_document_request.py -------------------------------------------------------------------------------- /xendit/customer/model/kyc_document_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/kyc_document_response.py -------------------------------------------------------------------------------- /xendit/customer/model/kyc_document_sub_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/kyc_document_sub_type.py -------------------------------------------------------------------------------- /xendit/customer/model/kyc_document_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/kyc_document_type.py -------------------------------------------------------------------------------- /xendit/customer/model/patch_customer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/patch_customer.py -------------------------------------------------------------------------------- /xendit/customer/model/response_data_not_found.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/response_data_not_found.py -------------------------------------------------------------------------------- /xendit/customer/model/update_customer400_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/update_customer400_response.py -------------------------------------------------------------------------------- /xendit/customer/model/update_customer400_response_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/customer/model/update_customer400_response_all_of.py -------------------------------------------------------------------------------- /xendit/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/exceptions.py -------------------------------------------------------------------------------- /xendit/invoice/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/__init__.py -------------------------------------------------------------------------------- /xendit/invoice/invoice_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/invoice_api.py -------------------------------------------------------------------------------- /xendit/invoice/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/__init__.py -------------------------------------------------------------------------------- /xendit/invoice/model/address_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/address_object.py -------------------------------------------------------------------------------- /xendit/invoice/model/alternative_display_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/alternative_display_item.py -------------------------------------------------------------------------------- /xendit/invoice/model/bad_request_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/bad_request_error.py -------------------------------------------------------------------------------- /xendit/invoice/model/bank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/bank.py -------------------------------------------------------------------------------- /xendit/invoice/model/bank_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/bank_code.py -------------------------------------------------------------------------------- /xendit/invoice/model/channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/channel_properties.py -------------------------------------------------------------------------------- /xendit/invoice/model/channel_properties_cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/channel_properties_cards.py -------------------------------------------------------------------------------- /xendit/invoice/model/channel_properties_cards_installment_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/channel_properties_cards_installment_configuration.py -------------------------------------------------------------------------------- /xendit/invoice/model/channel_properties_cards_installment_configuration_allowed_terms_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/channel_properties_cards_installment_configuration_allowed_terms_inner.py -------------------------------------------------------------------------------- /xendit/invoice/model/create_invoice_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/create_invoice_request.py -------------------------------------------------------------------------------- /xendit/invoice/model/customer_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/customer_object.py -------------------------------------------------------------------------------- /xendit/invoice/model/direct_debit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/direct_debit.py -------------------------------------------------------------------------------- /xendit/invoice/model/direct_debit_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/direct_debit_type.py -------------------------------------------------------------------------------- /xendit/invoice/model/ewallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/ewallet.py -------------------------------------------------------------------------------- /xendit/invoice/model/ewallet_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/ewallet_type.py -------------------------------------------------------------------------------- /xendit/invoice/model/forbidden_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/forbidden_error.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_callback.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_callback_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_callback_item.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_client_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_client_type.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_currency.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_error404_response_definition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_error404_response_definition.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_fee.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_fee.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_item.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_not_found_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_not_found_error.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_payment_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_payment_method.py -------------------------------------------------------------------------------- /xendit/invoice/model/invoice_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/invoice_status.py -------------------------------------------------------------------------------- /xendit/invoice/model/notification_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/notification_channel.py -------------------------------------------------------------------------------- /xendit/invoice/model/notification_preference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/notification_preference.py -------------------------------------------------------------------------------- /xendit/invoice/model/paylater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/paylater.py -------------------------------------------------------------------------------- /xendit/invoice/model/paylater_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/paylater_type.py -------------------------------------------------------------------------------- /xendit/invoice/model/payment_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/payment_details.py -------------------------------------------------------------------------------- /xendit/invoice/model/qr_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/qr_code.py -------------------------------------------------------------------------------- /xendit/invoice/model/qr_code_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/qr_code_type.py -------------------------------------------------------------------------------- /xendit/invoice/model/retail_outlet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/retail_outlet.py -------------------------------------------------------------------------------- /xendit/invoice/model/retail_outlet_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/retail_outlet_name.py -------------------------------------------------------------------------------- /xendit/invoice/model/server_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/server_error.py -------------------------------------------------------------------------------- /xendit/invoice/model/unauthorized_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/invoice/model/unauthorized_error.py -------------------------------------------------------------------------------- /xendit/model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/model_utils.py -------------------------------------------------------------------------------- /xendit/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/models/__init__.py -------------------------------------------------------------------------------- /xendit/payment_method/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/__init__.py -------------------------------------------------------------------------------- /xendit/payment_method/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/__init__.py -------------------------------------------------------------------------------- /xendit/payment_method/model/billing_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/billing_information.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card_installment_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card_installment_configuration.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card_parameters_card_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card_parameters_card_information.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card_verification_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card_verification_results.py -------------------------------------------------------------------------------- /xendit/payment_method/model/card_verification_results_three_d_secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/card_verification_results_three_d_secure.py -------------------------------------------------------------------------------- /xendit/payment_method/model/create_payment_method409_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/create_payment_method409_response.py -------------------------------------------------------------------------------- /xendit/payment_method/model/create_payment_method503_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/create_payment_method503_response.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit_all_of.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit_bank_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit_bank_account.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit_debit_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit_debit_card.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/direct_debit_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/direct_debit_type.py -------------------------------------------------------------------------------- /xendit/payment_method/model/e_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/e_wallet.py -------------------------------------------------------------------------------- /xendit/payment_method/model/e_wallet_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/e_wallet_account.py -------------------------------------------------------------------------------- /xendit/payment_method/model/e_wallet_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/e_wallet_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_method/model/e_wallet_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/e_wallet_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_method/model/e_wallet_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/e_wallet_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/get_all_payment_methods400_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/get_all_payment_methods400_response.py -------------------------------------------------------------------------------- /xendit/payment_method/model/get_all_payment_methods403_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/get_all_payment_methods403_response.py -------------------------------------------------------------------------------- /xendit/payment_method/model/get_all_payment_methods404_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/get_all_payment_methods404_response.py -------------------------------------------------------------------------------- /xendit/payment_method/model/get_all_payment_methods_default_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/get_all_payment_methods_default_response.py -------------------------------------------------------------------------------- /xendit/payment_method/model/over_the_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/over_the_counter.py -------------------------------------------------------------------------------- /xendit/payment_method/model/over_the_counter_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/over_the_counter_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_method/model/over_the_counter_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/over_the_counter_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_method/model/over_the_counter_channel_properties_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/over_the_counter_channel_properties_update.py -------------------------------------------------------------------------------- /xendit/payment_method/model/over_the_counter_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/over_the_counter_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/over_the_counter_update_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/over_the_counter_update_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_action.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_auth_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_auth_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_callback.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_country.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_expire_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_expire_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_list.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_reusability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_reusability.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_status.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_type.py -------------------------------------------------------------------------------- /xendit/payment_method/model/payment_method_update_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/payment_method_update_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/qr_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/qr_code.py -------------------------------------------------------------------------------- /xendit/payment_method/model/qr_code_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/qr_code_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_method/model/qr_code_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/qr_code_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_method/model/qr_code_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/qr_code_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/simulate_payment_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/simulate_payment_request.py -------------------------------------------------------------------------------- /xendit/payment_method/model/tokenized_card_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/tokenized_card_information.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account_all_of.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account_alternative_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account_alternative_display.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account_channel_properties_patch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account_channel_properties_patch.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/model/virtual_account_update_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/model/virtual_account_update_parameters.py -------------------------------------------------------------------------------- /xendit/payment_method/payment_method_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_method/payment_method_api.py -------------------------------------------------------------------------------- /xendit/payment_request/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/__init__.py -------------------------------------------------------------------------------- /xendit/payment_request/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/__init__.py -------------------------------------------------------------------------------- /xendit/payment_request/model/capture.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/capture.py -------------------------------------------------------------------------------- /xendit/payment_request/model/capture_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/capture_list.py -------------------------------------------------------------------------------- /xendit/payment_request/model/capture_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/capture_list_response.py -------------------------------------------------------------------------------- /xendit/payment_request/model/capture_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/capture_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card_information.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card_installment_configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card_installment_configuration.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card_verification_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card_verification_results.py -------------------------------------------------------------------------------- /xendit/payment_request/model/card_verification_results_three_d_secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/card_verification_results_three_d_secure.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_all_of.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_bank_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_bank_account.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_channel_properties_bank_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_channel_properties_bank_account.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_channel_properties_bank_redirect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_channel_properties_bank_redirect.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_channel_properties_debit_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_channel_properties_debit_card.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_debit_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_debit_card.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/direct_debit_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/direct_debit_type.py -------------------------------------------------------------------------------- /xendit/payment_request/model/e_wallet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/e_wallet.py -------------------------------------------------------------------------------- /xendit/payment_request/model/e_wallet_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/e_wallet_account.py -------------------------------------------------------------------------------- /xendit/payment_request/model/e_wallet_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/e_wallet_all_of.py -------------------------------------------------------------------------------- /xendit/payment_request/model/e_wallet_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/e_wallet_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_request/model/e_wallet_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/e_wallet_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/e_wallet_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/e_wallet_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/error.py -------------------------------------------------------------------------------- /xendit/payment_request/model/invoice_partner_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/invoice_partner_metadata.py -------------------------------------------------------------------------------- /xendit/payment_request/model/over_the_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/over_the_counter.py -------------------------------------------------------------------------------- /xendit/payment_request/model/over_the_counter_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/over_the_counter_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_request/model/over_the_counter_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/over_the_counter_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/over_the_counter_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/over_the_counter_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_callback.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_callback_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_callback_data.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_method.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_method_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_method_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_method_reusability.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_method_reusability.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_method_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_method_status.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_method_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_method_type.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_action.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_auth_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_auth_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_basket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_basket.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_basket_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_basket_item.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_capture_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_capture_method.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_card_verification_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_card_verification_results.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_card_verification_results_three_dee_secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_card_verification_results_three_dee_secure.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_country.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_currency.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_initiator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_initiator.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_list_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_list_response.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_parameters_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_parameters_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_parameters_channel_properties_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_parameters_channel_properties_all_of.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_shipping_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_shipping_information.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_request_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_request_status.py -------------------------------------------------------------------------------- /xendit/payment_request/model/payment_simulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/payment_simulation.py -------------------------------------------------------------------------------- /xendit/payment_request/model/qr_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/qr_code.py -------------------------------------------------------------------------------- /xendit/payment_request/model/qr_code_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/qr_code_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_request/model/qr_code_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/qr_code_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/qr_code_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/qr_code_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/model/virtual_account.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/virtual_account.py -------------------------------------------------------------------------------- /xendit/payment_request/model/virtual_account_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/virtual_account_all_of.py -------------------------------------------------------------------------------- /xendit/payment_request/model/virtual_account_alternative_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/virtual_account_alternative_display.py -------------------------------------------------------------------------------- /xendit/payment_request/model/virtual_account_channel_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/virtual_account_channel_code.py -------------------------------------------------------------------------------- /xendit/payment_request/model/virtual_account_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/virtual_account_channel_properties.py -------------------------------------------------------------------------------- /xendit/payment_request/model/virtual_account_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/model/virtual_account_parameters.py -------------------------------------------------------------------------------- /xendit/payment_request/payment_request_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payment_request/payment_request_api.py -------------------------------------------------------------------------------- /xendit/payout/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/__init__.py -------------------------------------------------------------------------------- /xendit/payout/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/__init__.py -------------------------------------------------------------------------------- /xendit/payout/model/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/channel.py -------------------------------------------------------------------------------- /xendit/payout/model/channel_account_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/channel_account_type.py -------------------------------------------------------------------------------- /xendit/payout/model/channel_amount_limits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/channel_amount_limits.py -------------------------------------------------------------------------------- /xendit/payout/model/channel_category.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/channel_category.py -------------------------------------------------------------------------------- /xendit/payout/model/create_payout_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/create_payout_request.py -------------------------------------------------------------------------------- /xendit/payout/model/digital_payout_channel_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/digital_payout_channel_properties.py -------------------------------------------------------------------------------- /xendit/payout/model/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/error.py -------------------------------------------------------------------------------- /xendit/payout/model/error_errors_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/error_errors_inner.py -------------------------------------------------------------------------------- /xendit/payout/model/get_payouts200_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/get_payouts200_response.py -------------------------------------------------------------------------------- /xendit/payout/model/get_payouts200_response_data_inner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/get_payouts200_response_data_inner.py -------------------------------------------------------------------------------- /xendit/payout/model/get_payouts200_response_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/get_payouts200_response_links.py -------------------------------------------------------------------------------- /xendit/payout/model/payout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/payout.py -------------------------------------------------------------------------------- /xendit/payout/model/payout_all_of.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/payout_all_of.py -------------------------------------------------------------------------------- /xendit/payout/model/receipt_notification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/model/receipt_notification.py -------------------------------------------------------------------------------- /xendit/payout/payout_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/payout/payout_api.py -------------------------------------------------------------------------------- /xendit/refund/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/__init__.py -------------------------------------------------------------------------------- /xendit/refund/model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/__init__.py -------------------------------------------------------------------------------- /xendit/refund/model/create_refund.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/create_refund.py -------------------------------------------------------------------------------- /xendit/refund/model/create_refund400_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/create_refund400_response.py -------------------------------------------------------------------------------- /xendit/refund/model/create_refund403_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/create_refund403_response.py -------------------------------------------------------------------------------- /xendit/refund/model/create_refund404_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/create_refund404_response.py -------------------------------------------------------------------------------- /xendit/refund/model/create_refund409_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/create_refund409_response.py -------------------------------------------------------------------------------- /xendit/refund/model/create_refund503_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/create_refund503_response.py -------------------------------------------------------------------------------- /xendit/refund/model/get_all_refunds_default_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/get_all_refunds_default_response.py -------------------------------------------------------------------------------- /xendit/refund/model/refund.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/refund.py -------------------------------------------------------------------------------- /xendit/refund/model/refund_callback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/refund_callback.py -------------------------------------------------------------------------------- /xendit/refund/model/refund_callback_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/refund_callback_data.py -------------------------------------------------------------------------------- /xendit/refund/model/refund_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/model/refund_list.py -------------------------------------------------------------------------------- /xendit/refund/refund_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/refund/refund_api.py -------------------------------------------------------------------------------- /xendit/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xendit/xendit-python/HEAD/xendit/rest.py --------------------------------------------------------------------------------