binance-api-client
Version:
A wrapper which can be used to interact with Binance's API. Entirely developed in TypeScript.
22 lines (16 loc) • 416 B
text/typescript
import { SymbolFilter } from "./abstraction/SymbolFilter";
/**
* Represents a single minimum notional filter.
*/
export class MinimumNotionalFilter implements SymbolFilter {
private _value: number;
constructor( json: any ) {
this._value = json.minNotional;
}
get value(): number {
return this._value;
}
set value( value: number ) {
this._value = value;
}
}