originstamp-client-fetch
Version:
TypeScript Fetch client for the OriginStamp service
45 lines (44 loc) • 2.08 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 TimestampResponseTreesInner
*/
export interface TimestampResponseTreesInner {
/**
* ID of associated transaction detail for the root hash submitted to a blockchain.
* @type {string}
* @memberof TimestampResponseTreesInner
*/
treeId: string;
/**
* ID of blockchain currency. Example 0 for Bitcoin, 1 for Ethereum.
* @type {number}
* @memberof TimestampResponseTreesInner
*/
currencyId: number;
/**
* Acronym for blockchain.
* @type {string}
* @memberof TimestampResponseTreesInner
*/
currency: string;
}
/**
* Check if a given object implements the TimestampResponseTreesInner interface.
*/
export declare function instanceOfTimestampResponseTreesInner(value: object): value is TimestampResponseTreesInner;
export declare function TimestampResponseTreesInnerFromJSON(json: any): TimestampResponseTreesInner;
export declare function TimestampResponseTreesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimestampResponseTreesInner;
export declare function TimestampResponseTreesInnerToJSON(json: any): TimestampResponseTreesInner;
export declare function TimestampResponseTreesInnerToJSONTyped(value?: TimestampResponseTreesInner | null, ignoreDiscriminator?: boolean): any;