/** * 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 { Notification } from './notification'; /** * request object for a timestamp request. */ export interface TimestampRequest { /** * You can add a short comment (max. 256 characters) which can be used for indexing and searching (public). */ comment?: string; /** * Hash in HEX representation. We suggest to use SHA-256. This hash will be aggregated and included into the blockchain. */ hash: string; /** * Add a notification/notification list to your submission. Our system will notify the specified target with the timestamp information. */ notifications?: Array; /** * Preprint URL. Insert the generated UUID here. You can generate an UUID-4 and include it into your document: https://originstamp.org/u/uuid4. When submitting the your file, the url is part of the hash, which finally means it the link to the timestamp is part of the timestamp. */ url?: string; }