/** * 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 FinalizedBlockDTO */ export interface FinalizedBlockDTO { /** * Finalization Epoch * @type {number} * @memberof FinalizedBlockDTO */ finalizationEpoch: number; /** * Finalization point * @type {number} * @memberof FinalizedBlockDTO */ finalizationPoint: number; /** * Height of the blockchain. * @type {string} * @memberof FinalizedBlockDTO */ height: string; /** * * @type {string} * @memberof FinalizedBlockDTO */ hash: string; } /** * Check if a given object implements the FinalizedBlockDTO interface. */ export declare function instanceOfFinalizedBlockDTO(value: Record): value is FinalizedBlockDTO; export declare function FinalizedBlockDTOFromJSON(json: any): FinalizedBlockDTO; export declare function FinalizedBlockDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): FinalizedBlockDTO; export declare function FinalizedBlockDTOToJSON(json: any): FinalizedBlockDTO; export declare function FinalizedBlockDTOToJSONTyped(value?: FinalizedBlockDTO | null, ignoreDiscriminator?: boolean): any;