/** * 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 */ /** * Request object for a manual webhook request. */ export interface WebhookRequest { /** * SHA-256 Hash in Hex representation */ hash: string; /** * target url that should receive the webhook */ webhookUrl: string; }