/** * 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. */ /** * Metadata related to the statment, including block information. * @export * @interface StatementMetaDTO */ export interface StatementMetaDTO { /** * 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 StatementMetaDTO */ timestamp: string; } /** * Check if a given object implements the StatementMetaDTO interface. */ export declare function instanceOfStatementMetaDTO(value: Record): value is StatementMetaDTO; export declare function StatementMetaDTOFromJSON(json: any): StatementMetaDTO; export declare function StatementMetaDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): StatementMetaDTO; export declare function StatementMetaDTOToJSON(json: any): StatementMetaDTO; export declare function StatementMetaDTOToJSONTyped(value?: StatementMetaDTO | null, ignoreDiscriminator?: boolean): any;