originstamp-client-fetch
Version:
TypeScript Fetch client for the OriginStamp service
33 lines (32 loc) • 1.56 kB
TypeScript
/**
* OriginStamp Timestamping
* OriginStamp Timestamping leverages decentralized blockchain technology to create anonymous, tamper-proof timestamps for digital content. This service enables users to timestamp files, emails, or plain text, and store the resulting hashes on the blockchain. Users can also retrieve and verify timestamps that have been committed. The trusted timestamping mechanism ensures that a hash fingerprint can be generated and used as proof that specific data existed at a given point in time.
*
* The version of the OpenAPI document: 1.0.0
* Contact: support@originstamp.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
*
* @export
* @interface Notification
*/
export interface Notification {
/**
* The webhook URL will receive a POST request after the timestamp was successfully verified.
* @type {string}
* @memberof Notification
*/
target: string;
}
/**
* Check if a given object implements the Notification interface.
*/
export declare function instanceOfNotification(value: object): value is Notification;
export declare function NotificationFromJSON(json: any): Notification;
export declare function NotificationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Notification;
export declare function NotificationToJSON(json: any): Notification;
export declare function NotificationToJSONTyped(value?: Notification | null, ignoreDiscriminator?: boolean): any;