/** * 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 { BlockMetaDTO } from './BlockMetaDTO'; import type { BlockInfoDTOBlock } from './BlockInfoDTOBlock'; /** * * @export * @interface BlockInfoDTO */ export interface BlockInfoDTO { /** * Internal resource identifier. * @type {string} * @memberof BlockInfoDTO */ id: string; /** * * @type {BlockMetaDTO} * @memberof BlockInfoDTO */ meta: BlockMetaDTO; /** * * @type {BlockInfoDTOBlock} * @memberof BlockInfoDTO */ block: BlockInfoDTOBlock; } /** * Check if a given object implements the BlockInfoDTO interface. */ export declare function instanceOfBlockInfoDTO(value: Record): value is BlockInfoDTO; export declare function BlockInfoDTOFromJSON(json: any): BlockInfoDTO; export declare function BlockInfoDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlockInfoDTO; export declare function BlockInfoDTOToJSON(json: any): BlockInfoDTO; export declare function BlockInfoDTOToJSONTyped(value?: BlockInfoDTO | null, ignoreDiscriminator?: boolean): any;