/** * OriginStamp Client * * OpenAPI spec version: 3.0 * OriginStamp Documentation: https://doc.originstamp.org * Contact: mail@originstamp.com * Generated by: https://github.com/swagger-api/swagger-codegen.git */ import { TimestampResponse } from './timestampResponse'; /** * The default service response object uses error code and message to indicate errors. These errors are handled by the client. */ export interface DefaultTimestampResponse { /** * Generic response object which contains the response data, e.g. timestamp information. */ data?: TimestampResponse; /** * Contains the error of the request. If the error code is 0, everything is fine. */ errorCode?: number; /** * Contains the error message, that possibly occurred. If it is empty, everything is fine. */ errorMessage?: string; }