/** * 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 { MetadataEntryDTO } from './MetadataEntryDTO'; /** * * @export * @interface MetadataInfoDTO */ export interface MetadataInfoDTO { /** * * @type {string} * @memberof MetadataInfoDTO */ id: string; /** * * @type {MetadataEntryDTO} * @memberof MetadataInfoDTO */ metadataEntry: MetadataEntryDTO; } /** * Check if a given object implements the MetadataInfoDTO interface. */ export declare function instanceOfMetadataInfoDTO(value: Record): value is MetadataInfoDTO; export declare function MetadataInfoDTOFromJSON(json: any): MetadataInfoDTO; export declare function MetadataInfoDTOFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetadataInfoDTO; export declare function MetadataInfoDTOToJSON(json: any): MetadataInfoDTO; export declare function MetadataInfoDTOToJSONTyped(value?: MetadataInfoDTO | null, ignoreDiscriminator?: boolean): any;