UNPKG

@cotofe/service-of-system

Version:

OpenAPI client for @cotofe/service-of-system

45 lines (44 loc) 1.34 kB
/** * Platform * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * LogWithTimestamp * @export * @interface LogWithTimestamp */ export interface LogWithTimestamp { /** * * @type {string} * @memberof LogWithTimestamp */ log?: string; /** * * @type {Array<object>} * @memberof LogWithTimestamp */ sortValues?: Array<object>; /** * * @type {number} * @memberof LogWithTimestamp */ timestamp?: number; } /** * Check if a given object implements the LogWithTimestamp interface. */ export declare function instanceOfLogWithTimestamp(value: object): value is LogWithTimestamp; export declare function LogWithTimestampFromJSON(json: any): LogWithTimestamp; export declare function LogWithTimestampFromJSONTyped(json: any, ignoreDiscriminator: boolean): LogWithTimestamp; export declare function LogWithTimestampToJSON(json: any): LogWithTimestamp; export declare function LogWithTimestampToJSONTyped(value?: LogWithTimestamp | null, ignoreDiscriminator?: boolean): any;