UNPKG

upstox-js-sdk

Version:

The official Node Js client for communicating with the Upstox API

57 lines (48 loc) 1.71 kB
/* * OpenAPI definition * No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) * * OpenAPI spec version: v0 * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * * Swagger Codegen version: 3.0.79 * * Do not edit the class manually. * */ (function(root, factory) { if (typeof define === 'function' && define.amd) { // AMD. define(['expect.js', '../../src/index'], factory); } else if (typeof module === 'object' && module.exports) { // CommonJS-like environments that support module.exports, like Node. factory(require('expect.js'), require('../../src/index')); } else { // Browser globals (root is window) factory(root.expect, root.UpstoxClient); } }(this, function(expect, UpstoxClient) { 'use strict'; var instance; describe('(package)', function() { describe('GetMutualFundSipsResponse', function() { beforeEach(function() { instance = new UpstoxClient.GetMutualFundSipsResponse(); }); it('should create an instance of GetMutualFundSipsResponse', function() { expect(instance).to.be.a(UpstoxClient.GetMutualFundSipsResponse); }); it('should have the property status (base name: "status")', function() { expect(instance).to.have.property('status'); }); it('should have the property data (base name: "data")', function() { expect(instance).to.have.property('data'); }); it('should have the property metaData (base name: "meta_data")', function() { expect(instance).to.have.property('metaData'); }); }); }); }));