mangopay2-nodejs-sdk
Version:
Mangopay Node.js SDK
36 lines (25 loc) • 731 B
JavaScript
var _ = require('underscore');
var PayInPaymentDetails = require('./PayInPaymentDetails');
var PayInPaymentDetailsGooglePay = PayInPaymentDetails.extend({
defaults: {
/**
* Payment information returned by Google Pay payment
*/
PaymentData: null,
/**
* Custom description to show on the user's bank statement.
* It can be up to 10 char alpha-numeric and space.
*/
StatementDescriptor: null,
/**
* Billing details
*/
Billing: null,
/// V2 ///
ReturnURL: null,
Shipping: null,
BrowserInfo: null,
IpAddress: null
}
});
module.exports = PayInPaymentDetailsGooglePay;