/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { EntityHeader } from './EntityHeader'; /** * All entities in this Entity's path * @export * @interface EntityPath */ export interface EntityPath { /** * The list of all entities in this entites path. The first element is the root parent and the last element (n) is the entity. * @type {Array} * @memberof EntityPath */ path?: Array; } /** * Check if a given object implements the EntityPath interface. */ export declare function instanceOfEntityPath(value: object): value is EntityPath; export declare function EntityPathFromJSON(json: any): EntityPath; export declare function EntityPathFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityPath; export declare function EntityPathToJSON(json: any): EntityPath; export declare function EntityPathToJSONTyped(value?: EntityPath | null, ignoreDiscriminator?: boolean): any;