/** * 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 { NamespaceInfoDTO } from './NamespaceInfoDTO'; /** * * @export * @interface NamespacePage */ export interface NamespacePage { /** * Array of namespaces. * @type {Array} * @memberof NamespacePage */ data: Array; /** * * @type {Pagination} * @memberof NamespacePage */ pagination: Pagination; } /** * Check if a given object implements the NamespacePage interface. */ export declare function instanceOfNamespacePage(value: Record): value is NamespacePage; export declare function NamespacePageFromJSON(json: any): NamespacePage; export declare function NamespacePageFromJSONTyped(json: any, ignoreDiscriminator: boolean): NamespacePage; export declare function NamespacePageToJSON(json: any): NamespacePage; export declare function NamespacePageToJSONTyped(value?: NamespacePage | null, ignoreDiscriminator?: boolean): any;