/** * OriginStamp Client * * OpenAPI spec version: 3.0 * OriginStamp Documentation: https://doc.originstamp.org * Contact: mail@originstamp.com * Generated by: https://github.com/swagger-api/swagger-codegen.git */ /** * DTO for the timestamp data. */ export interface TimestampData { /** * 0: Bitcoin */ currencyId?: number; /** * The private key represents the top hash in the Merkle Tree (see https://en.wikipedia.org/wiki/Merkle_tree ) or the hash of all hashes in the transaction. */ privateKey?: string; /** * The submit status of the hash: 0: the hash was not broadcasted yet 1: the hash was included into a transaction and broadcasted to the network, but not included into a block 2: the transaction was included into the latest block 3: the timestamp for your hash was successfully created. */ submitStatus?: number; /** * The date is returned in the following format: [ms] since 1.1.1970 (unix epoch), timezone: UTC. This is a true timestamp. */ timestamp?: number; /** * If available: the transaction hash of the timestamp. */ transaction?: string; }