bittrex-api-client
Version:
A client which can be used to interact with Bittrex's API. Entirely developed in TypeScript.
25 lines • 554 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Represents a single placed order.
*/
class PlacedOrder {
constructor(json, type) {
this._quantity = json.Quantity;
this._rate = json.Rate;
}
get quantity() {
return this._quantity;
}
set quantity(value) {
this._quantity = value;
}
get rate() {
return this._rate;
}
set rate(value) {
this._rate = value;
}
}
exports.PlacedOrder = PlacedOrder;
//# sourceMappingURL=PlacedOrder.js.map