originstamp-client-fetch
Version:
TypeScript Fetch client for the OriginStamp service
34 lines (33 loc) • 1.84 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.
*/
import type { KeySettingResponseNotification } from './KeySettingResponseNotification';
/**
* API Setting contains notification i.e. webhook targets. An empty string indicates that the notification is deactivated for this category.
* @export
* @interface KeySettingResponse
*/
export interface KeySettingResponse {
/**
*
* @type {KeySettingResponseNotification}
* @memberof KeySettingResponse
*/
notification?: KeySettingResponseNotification;
}
/**
* Check if a given object implements the KeySettingResponse interface.
*/
export declare function instanceOfKeySettingResponse(value: object): value is KeySettingResponse;
export declare function KeySettingResponseFromJSON(json: any): KeySettingResponse;
export declare function KeySettingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeySettingResponse;
export declare function KeySettingResponseToJSON(json: any): KeySettingResponse;
export declare function KeySettingResponseToJSONTyped(value?: KeySettingResponse | null, ignoreDiscriminator?: boolean): any;