/** * 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 object for notifications. */ export interface Notification { /** * 0: Bitcoin */ currency: number; /** * 0: notify via email 1: notify a webhook */ notificationType: number; /** * Depending on the notification type, specify the target for the notification (e.g. email address or webhook url). The webhook url will reveive a POST request after timestamp was successfully created. */ target: string; }