UNPKG

scheunemann-interfaces

Version:
28 lines (27 loc) 1.45 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.EPaymentTypeId = void 0; var EPaymentTypeId; (function (EPaymentTypeId) { EPaymentTypeId["TICKET"] = "ticket"; EPaymentTypeId["BANK_TRANSFER"] = "bank_transfer"; EPaymentTypeId["ATM"] = "atm"; EPaymentTypeId["CREDIT_CARD"] = "credit_card"; EPaymentTypeId["DEBIT_CARD"] = "debit_card"; EPaymentTypeId["PREPAID_CARD"] = "prepaid_card"; EPaymentTypeId["DIGITAL_CURRENCY"] = "digital_currency"; EPaymentTypeId["DIGITAL_WALLET"] = "digital_wallet"; EPaymentTypeId["VOUCHER_CARD"] = "voucher_card"; EPaymentTypeId["CRYPTO_TRANSFER"] = "crypto_transfer"; })(EPaymentTypeId || (exports.EPaymentTypeId = EPaymentTypeId = {})); // É o tipo da forma de pagamento (cartão, transferência bancária, boleto, caixa eletrônico, etc). Podem ser dos seguintes tipos. // ticket: Boletos, Caixa Electronica Payment, PayCash, Efecty, Oxxo, etc. // bank_transfer: Pix e PSE (Pagos Seguros en Línea). // atm: Pagamento em caixa eletrônico (amplamente utilizado no México através do BBVA Bancomer). // credit_card: Pagamento com cartão de crédito. // debit_card: Pagamento com cartão de débito. // prepaid_card: Pagamento com cartão pré-pago. // digital_currency: Compras com Mercado Crédito. // digital_wallet: Paypal. // voucher_card: Benefícios Alelo e Sodexo. // crypto_transfer: Pagamento com criptomoedas como Ethereum e Bitcoin.