originstamp-client-fetch
Version:
TypeScript Fetch client for the OriginStamp service
33 lines (32 loc) • 1.54 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 TimestampRequest
*/
export interface TimestampRequest {
/**
*
* @type {Array<string>}
* @memberof TimestampRequest
*/
sha256: Array<string>;
}
/**
* Check if a given object implements the TimestampRequest interface.
*/
export declare function instanceOfTimestampRequest(value: object): value is TimestampRequest;
export declare function TimestampRequestFromJSON(json: any): TimestampRequest;
export declare function TimestampRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimestampRequest;
export declare function TimestampRequestToJSON(json: any): TimestampRequest;
export declare function TimestampRequestToJSONTyped(value?: TimestampRequest | null, ignoreDiscriminator?: boolean): any;