import {Enum} from "./Enum"; import {EnumValue} from "./EnumValue"; /** * Represents period of time of Crypto order topicality before execution or Crypto canceling. */ export interface CryptoTimeInForce extends Enum { /** * Order will be actual until it will be canceled or executed. * @type {EnumValue} */ readonly Gtc: EnumValue; }