UNPKG

originstamp-client-fetch

Version:
52 lines (51 loc) 2.21 kB
/** * 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 { KeyUsageResponseReportsInner } from './KeyUsageResponseReportsInner'; /** * Usage metric for requested time period and current limits. * @export * @interface KeyUsageResponse */ export interface KeyUsageResponse { /** * Total number of timestamp requests available per month. * @type {number} * @memberof KeyUsageResponse */ limitTimestamps: number; /** * Total number of proof requests available per month. * @type {number} * @memberof KeyUsageResponse */ limitProofs: number; /** * Total number of status requests available per month. * @type {number} * @memberof KeyUsageResponse */ limitStatus: number; /** * * @type {Array<KeyUsageResponseReportsInner>} * @memberof KeyUsageResponse */ reports: Array<KeyUsageResponseReportsInner>; } /** * Check if a given object implements the KeyUsageResponse interface. */ export declare function instanceOfKeyUsageResponse(value: object): value is KeyUsageResponse; export declare function KeyUsageResponseFromJSON(json: any): KeyUsageResponse; export declare function KeyUsageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): KeyUsageResponse; export declare function KeyUsageResponseToJSON(json: any): KeyUsageResponse; export declare function KeyUsageResponseToJSONTyped(value?: KeyUsageResponse | null, ignoreDiscriminator?: boolean): any;