/** * AI Mastering API * This is a AI Mastering API document. You can use the mastering feature of [AI Mastering](https://aimastering.com) through this API. * * OpenAPI spec version: 1.0.0 * Contact: info@bakuage.com * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * * Swagger Codegen version: 2.3.1 * * Do not edit the class manually. * */ (function(root, factory) { if (typeof define === 'function' && define.amd) { // AMD. Register as an anonymous module. define(['ApiClient', 'model/Payment'], factory); } else if (typeof module === 'object' && module.exports) { // CommonJS-like environments that support module.exports, like Node. module.exports = factory(require('../ApiClient'), require('../model/Payment')); } else { // Browser globals (root is window) if (!root.Aimastering) { root.Aimastering = {}; } root.Aimastering.PaymentApi = factory(root.Aimastering.ApiClient, root.Aimastering.Payment); } }(this, function(ApiClient, Payment) { 'use strict'; /** * Payment service. * @module api/PaymentApi * @version 1.1.0 */ /** * Constructs a new PaymentApi. * @alias module:api/PaymentApi * @class * @param {module:ApiClient} [apiClient] Optional API client implementation to use, * default to {@link module:ApiClient#instance} if unspecified. */ var exports = function(apiClient) { this.apiClient = apiClient || ApiClient.instance; /** * Callback function to receive the result of the createPayment operation. * @callback module:api/PaymentApi~createPaymentCallback * @param {String} error Error message, if any. * @param {module:model/Payment} data The data returned by the service call. * @param {String} response The complete HTTP response. */ /** * Create a new payment. * @param {String} productToken This parameter represents the product token. * @param {module:model/String} service This parameter represents the payment message. * @param {Object} opts Optional parameters * @param {String} opts.token This parameter represents the card token. This parameter is effective only when the service is \"stripe\". * @param {module:api/PaymentApi~createPaymentCallback} callback The callback function, accepting three arguments: error, data, response * data is of type: {@link module:model/Payment} */ this.createPayment = function(productToken, service, opts, callback) { opts = opts || {}; var postBody = null; // verify the required parameter 'productToken' is set if (productToken === undefined || productToken === null) { throw new Error("Missing the required parameter 'productToken' when calling createPayment"); } // verify the required parameter 'service' is set if (service === undefined || service === null) { throw new Error("Missing the required parameter 'service' when calling createPayment"); } var pathParams = { }; var queryParams = { }; var collectionQueryParams = { }; var headerParams = { }; var formParams = { 'product_token': productToken, 'service': service, 'token': opts['token'] }; var authNames = ['bearer']; var contentTypes = ['multipart/form-data']; var accepts = ['application/json']; var returnType = Payment; return this.apiClient.callApi( '/payments', 'POST', pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, callback ); } /** * Callback function to receive the result of the executePayment operation. * @callback module:api/PaymentApi~executePaymentCallback * @param {String} error Error message, if any. * @param {module:model/Payment} data The data returned by the service call. * @param {String} response The complete HTTP response. */ /** * Execute a payment by id. * @param {Number} id Payment id * @param {String} payerId This parameter represents the card token. This parameter is effective only when the service is \"paypal\". * @param {module:api/PaymentApi~executePaymentCallback} callback The callback function, accepting three arguments: error, data, response * data is of type: {@link module:model/Payment} */ this.executePayment = function(id, payerId, callback) { var postBody = null; // verify the required parameter 'id' is set if (id === undefined || id === null) { throw new Error("Missing the required parameter 'id' when calling executePayment"); } // verify the required parameter 'payerId' is set if (payerId === undefined || payerId === null) { throw new Error("Missing the required parameter 'payerId' when calling executePayment"); } var pathParams = { 'id': id }; var queryParams = { }; var collectionQueryParams = { }; var headerParams = { }; var formParams = { 'payer_id': payerId }; var authNames = ['bearer']; var contentTypes = ['multipart/form-data']; var accepts = ['application/json']; var returnType = Payment; return this.apiClient.callApi( '/payments/{id}/execute', 'PUT', pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, callback ); } /** * Callback function to receive the result of the getPayment operation. * @callback module:api/PaymentApi~getPaymentCallback * @param {String} error Error message, if any. * @param {module:model/Payment} data The data returned by the service call. * @param {String} response The complete HTTP response. */ /** * Get a payment by id. * @param {Number} id Payment id * @param {module:api/PaymentApi~getPaymentCallback} callback The callback function, accepting three arguments: error, data, response * data is of type: {@link module:model/Payment} */ this.getPayment = function(id, callback) { var postBody = null; // verify the required parameter 'id' is set if (id === undefined || id === null) { throw new Error("Missing the required parameter 'id' when calling getPayment"); } var pathParams = { 'id': id }; var queryParams = { }; var collectionQueryParams = { }; var headerParams = { }; var formParams = { }; var authNames = ['bearer']; var contentTypes = []; var accepts = ['application/json']; var returnType = Payment; return this.apiClient.callApi( '/payments/{id}', 'GET', pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, callback ); } /** * Callback function to receive the result of the listPayments operation. * @callback module:api/PaymentApi~listPaymentsCallback * @param {String} error Error message, if any. * @param {Array.} data The data returned by the service call. * @param {String} response The complete HTTP response. */ /** * Get all accessable payments. * @param {module:api/PaymentApi~listPaymentsCallback} callback The callback function, accepting three arguments: error, data, response * data is of type: {@link Array.} */ this.listPayments = function(callback) { var postBody = null; var pathParams = { }; var queryParams = { }; var collectionQueryParams = { }; var headerParams = { }; var formParams = { }; var authNames = ['bearer']; var contentTypes = []; var accepts = ['application/json']; var returnType = [Payment]; return this.apiClient.callApi( '/payments', 'GET', pathParams, queryParams, collectionQueryParams, headerParams, formParams, postBody, authNames, contentTypes, accepts, returnType, callback ); } }; return exports; }));