UNPKG

braintree

Version:

A library for integrating with Braintree.

26 lines (17 loc) 924 B
//@ sourceMappingURL=disbursement_details.map // Generated by CoffeeScript 1.6.1 var AttributeSetter, DisbursementDetails, __hasProp = {}.hasOwnProperty, __extends = function(child, parent) { for (var key in parent) { if (__hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; AttributeSetter = require('./attribute_setter').AttributeSetter; DisbursementDetails = (function(_super) { __extends(DisbursementDetails, _super); function DisbursementDetails() { return DisbursementDetails.__super__.constructor.apply(this, arguments); } DisbursementDetails.prototype.isValid = function() { return this.disbursementDate != null; }; return DisbursementDetails; })(AttributeSetter); exports.DisbursementDetails = DisbursementDetails;