/** * 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 { Pagination } from './Pagination'; import type { MetadataInfoDTO } from './MetadataInfoDTO'; /** * * @export * @interface MetadataPage */ export interface MetadataPage { /** * Array of metadata entries. * @type {Array} * @memberof MetadataPage */ data: Array; /** * * @type {Pagination} * @memberof MetadataPage */ pagination: Pagination; } /** * Check if a given object implements the MetadataPage interface. */ export declare function instanceOfMetadataPage(value: Record): value is MetadataPage; export declare function MetadataPageFromJSON(json: any): MetadataPage; export declare function MetadataPageFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetadataPage; export declare function MetadataPageToJSON(json: any): MetadataPage; export declare function MetadataPageToJSONTyped(value?: MetadataPage | null, ignoreDiscriminator?: boolean): any;