payrex-node
Version:
PayRex Node JS Library
24 lines (22 loc) • 1.01 kB
JavaScript
const BillingStatementLineItemService = require('./BillingStatementLineItemService');
const BillingStatementService = require('./BillingStatementService');
const CheckoutSessionService = require('./CheckoutSessionService');
const CustomerSessionService = require('./CustomerSessionService');
const CustomerService = require('./CustomerService');
const PaymentIntentService = require('./PaymentIntentService');
const PaymentService = require('./PaymentService');
const PayoutService = require('./PayoutService');
const RefundService = require('./RefundService');
const WebhookService = require('./WebhookService');
module.exports = {
checkoutSessions: CheckoutSessionService,
customerSessions: CustomerSessionService,
payments: PaymentService,
paymentIntents: PaymentIntentService,
payouts: PayoutService,
customers: CustomerService,
billingStatements: BillingStatementService,
billingStatementLineItems: BillingStatementLineItemService,
refunds: RefundService,
webhooks: WebhookService,
};