enhancv/mongoose-subscriptions

View on GitHub
src/Schema/PaymentMethod/PayPalAccount.js

Summary

Maintainability
A
0 mins
Test Coverage
const mongoose = require("mongoose");

const Schema = mongoose.Schema;

const PayPalAccount = new Schema(
    {
        email: String,
        name: String,
        payerId: String,
        countryCode: String,
    },
    { _id: false }
);

module.exports = PayPalAccount;