UNPKG

intopays

Version:

Intopays - Gateway de integração bancária

34 lines (33 loc) 937 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PaymentStatus = void 0; /** * Enumeração que define os status de pagamento de um boleto. */ var PaymentStatus; (function (PaymentStatus) { /** * O boleto expirou e não pode mais ser pago. */ PaymentStatus["EXPIRED"] = "EXPIRED"; /** * O boleto está vencido e ainda não foi pago. */ PaymentStatus["OVERDUE"] = "OVERDUE"; /** * O boleto está aberto, aguardando pagamento. */ PaymentStatus["OPEN"] = "OPEN"; /** * O boleto foi pago com sucesso. */ PaymentStatus["PAID"] = "PAID"; /** * O boleto foi cancelado, não pode ser pago. */ PaymentStatus["CANCELLED"] = "CANCELLED"; /** * O pagamento está sendo processado. */ PaymentStatus["PROCESSING"] = "PROCESSING"; })(PaymentStatus = exports.PaymentStatus || (exports.PaymentStatus = {}));