26 lines
832 B
JavaScript
26 lines
832 B
JavaScript
"use strict";
|
|
// tslint:disable
|
|
/**
|
|
* Magento Community
|
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
|
*
|
|
* OpenAPI spec version: 2.4
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by the swagger code generator program.
|
|
* https://github.com/swagger-api/swagger-codegen.git
|
|
* Do not edit the class manually.
|
|
*/
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Configuration = void 0;
|
|
class Configuration {
|
|
constructor(param = {}) {
|
|
this.apiKey = param.apiKey;
|
|
this.username = param.username;
|
|
this.password = param.password;
|
|
this.accessToken = param.accessToken;
|
|
this.basePath = param.basePath;
|
|
}
|
|
}
|
|
exports.Configuration = Configuration;
|
|
//# sourceMappingURL=configuration.js.map
|