/** * Catapult REST Endpoints * OpenAPI Specification of catapult-rest * * The version of the OpenAPI document: 1.0.4 * * * 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 { CommunicationTimestampsDTO } from './CommunicationTimestampsDTO'; /** * * @export * @interface NodeTimeDTO */ export interface NodeTimeDTO { /** * * @type {CommunicationTimestampsDTO} * @memberof NodeTimeDTO */ communicationTimestamps: CommunicationTimestampsDTO; } /** * Check if a given object implements the NodeTimeDTO interface. */ export declare function instanceOfNodeTimeDTO(value: Record): value is NodeTimeDTO; export declare function NodeTimeDTOFromJSON(json: any): NodeTimeDTO; export declare function NodeTimeDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): NodeTimeDTO; export declare function NodeTimeDTOToJSON(json: any): NodeTimeDTO; export declare function NodeTimeDTOToJSONTyped(value?: NodeTimeDTO | null, ignoreDiscriminator?: boolean): any;