gunbot-sdk-js
Version:
Open-source JavaScript & TypeScript **SDK** for controlling the Gunbot trading bot REST API (crypto, ETF, stock)
23 lines (22 loc) • 907 B
TypeScript
/**
* The BalancesResponse model module.
* @module model/BalancesResponse
* @version v1
*/
export default class BalancesResponse extends Array<any> {
/**
* Constructs a <code>BalancesResponse</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:model/BalancesResponse} obj Optional instance to populate.
* @return {module:model/BalancesResponse} The populated <code>BalancesResponse</code> instance.
*/
static constructFromObject(data: any, obj: any): any;
/**
* Constructs a new <code>BalancesResponse</code>.
* @alias module:model/BalancesResponse
* @class
* @extends Array
*/
constructor();
}