originstamp-client-fetch
Version:
TypeScript Fetch client for the OriginStamp service
34 lines (33 loc) • 1.83 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 { KeySettingRequestNotification } from './KeySettingRequestNotification';
/**
* API Setting contains notification i.e. webhook targets. Setting new values is optional, setting an empty string will deactivate the notification target.
* @export
* @interface KeySettingRequest
*/
export interface KeySettingRequest {
/**
*
* @type {KeySettingRequestNotification}
* @memberof KeySettingRequest
*/
notification?: KeySettingRequestNotification;
}
/**
* Check if a given object implements the KeySettingRequest interface.
*/
export declare function instanceOfKeySettingRequest(value: object): value is KeySettingRequest;
export declare function KeySettingRequestFromJSON(json: any): KeySettingRequest;
export declare function KeySettingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeySettingRequest;
export declare function KeySettingRequestToJSON(json: any): KeySettingRequest;
export declare function KeySettingRequestToJSONTyped(value?: KeySettingRequest | null, ignoreDiscriminator?: boolean): any;