/** * 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 */ import { TimestampData } from './timestampData'; /** * Response object for the timestamp response. Create, Status and Webhookshare the same object. This saves customers additional implementation work, as the requests or data only have to be understood once.The difference is that the webhook is only triggered as soon as a tamper-proof timestamp exists. */ export interface TimestampResponse { /** * The comment which was added in the submission of the hash. */ comment?: string; /** * Field is set to true if it is a novel hash. If the flag is false, the hash was already submitted before. */ created?: boolean; /** * The time when your hash was submitted to OriginStamp. The date is returned in the following format: [ms] since 1.1.1970 (unix epoch), timezone: UTC. This is not considered as a true timestamp. */ dateCreated?: number; /** * The submitted hash in hex representation. */ hashString?: string; /** * Contains all the timestamp data of your hash until now. */ timestamps?: Array; }