import {UserCryptoExecution} from "./UserCryptoExecution"; /** * Represents base Crypto message for all cancel messages. */ export interface CryptoExecutionCancelMessage extends UserCryptoExecution { /** * Unique number per one cancel message. * @type {number} */ CancelTicketNo: number; /** * Number of transaction. * @type {string} */ TransactionNo: string; }