(function(root, factory) {
  if (typeof define === 'function' && define.amd) {
    // AMD. Register as an anonymous module.
    define(['ApiClient', 'models/FundingAccountSnapshotResponse', 'models/SourcePaymentCustomer', 'models/SourcePaymentCustomerAccount'], factory);
  } else if (typeof module === 'object' && module.exports) {
    // CommonJS-like environments that support module.exports, like Node.
    module.exports = factory(require('../ApiClient'), require('./FundingAccountSnapshotResponse'), require('./SourcePaymentCustomer'), require('./SourcePaymentCustomerAccount'));
  } else {
    // Browser globals (root is window)
    if (!root.OrbipayPaymentsapiClient) {
      root.OrbipayPaymentsapiClient = {};
    }
    root.OrbipayPaymentsapiClient.SourcePayment = factory(root.OrbipayPaymentsapiClient.ApiClient, root.OrbipayPaymentsapiClient.FundingAccountSnapshotResponse, root.OrbipayPaymentsapiClient.SourcePaymentCustomer, root.OrbipayPaymentsapiClient.SourcePaymentCustomerAccount);
  }
}(this, function(ApiClient, FundingAccountSnapshotResponse, SourcePaymentCustomer, SourcePaymentCustomerAccount) {
  'use strict';




  /**
   * The SourcePayment model module.
   * @module models/SourcePayment
   */

  /**
   * <h3 style="color:red"> This class subject to change without prior notice, Please dont use this class directly. </h3>

   * Constructs a new <code>SourcePayment</code>.
   * @alias module:models/SourcePayment
   * @class
   */
  var exports = function() {
    var _this = this;






  };

  /**
   * Constructs a <code>SourcePayment</code> from a plain JavaScript object, optionally creating a new instance.
   * Copies all relevant properties from <code>data</code> to <code>obj</code> if supplied or a new instance if not.
   * @param {Object} data The plain JavaScript object bearing properties of interest.
   * @param {module:models/SourcePayment} obj Optional instance to populate.
   * @return {module:models/SourcePayment} The populated <code>SourcePayment</code> instance.
   */
  exports.constructFromObject = function(data, obj) {
    if (data) {
      obj = obj || new exports();

      if (data.hasOwnProperty('id')) {
        obj['id'] = ApiClient.convertToType(data['id'], 'String');
      }
      if (data.hasOwnProperty('url')) {
        obj['url'] = ApiClient.convertToType(data['url'], 'String');
      }
      if (data.hasOwnProperty('customer')) {
        obj['customer'] = SourcePaymentCustomer.constructFromObject(data['customer']);
      }
      if (data.hasOwnProperty('customer_account')) {
        obj['customer_account'] = SourcePaymentCustomerAccount.constructFromObject(data['customer_account']);
      }
      if (data.hasOwnProperty('funding_account')) {
        obj['funding_account'] = FundingAccountSnapshotResponse.constructFromObject(data['funding_account']);
      }
    }
    return obj;
  };

  /**
   * @member {String} id
   */
  exports.prototype['id'] = undefined;
  /**
   * This URL fetches the details of source payment.
   * @member {String} url
   */
  exports.prototype['url'] = undefined;
  /**
   * @member {module:models/SourcePaymentCustomer} customer
   */
  exports.prototype['customer'] = undefined;
  /**
   * @member {module:models/SourcePaymentCustomerAccount} customer_account
   */
  exports.prototype['customer_account'] = undefined;
  /**
   * @member {module:models/FundingAccountSnapshotResponse} funding_account
   */
  exports.prototype['funding_account'] = undefined;



  return exports;
}));