/** * 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. */ /** * * @export * @interface CommunicationTimestampsDTO */ export interface CommunicationTimestampsDTO { /** * Number of milliseconds elapsed since the creation of the nemesis block. This value can be converted to epoch time by adding the network's 'epochAdjustment'. * @type {string} * @memberof CommunicationTimestampsDTO */ sendTimestamp?: string; /** * Number of milliseconds elapsed since the creation of the nemesis block. This value can be converted to epoch time by adding the network's 'epochAdjustment'. * @type {string} * @memberof CommunicationTimestampsDTO */ receiveTimestamp?: string; } /** * Check if a given object implements the CommunicationTimestampsDTO interface. */ export declare function instanceOfCommunicationTimestampsDTO(value: Record): value is CommunicationTimestampsDTO; export declare function CommunicationTimestampsDTOFromJSON(json: any): CommunicationTimestampsDTO; export declare function CommunicationTimestampsDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommunicationTimestampsDTO; export declare function CommunicationTimestampsDTOToJSON(json: any): CommunicationTimestampsDTO; export declare function CommunicationTimestampsDTOToJSONTyped(value?: CommunicationTimestampsDTO | null, ignoreDiscriminator?: boolean): any;