/** * 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. */ /** * JSON schema for EntityId POJO * @export * @interface EntityId */ export interface EntityId { /** * The id of an entity. * @type {string} * @memberof EntityId */ id?: string; } /** * Check if a given object implements the EntityId interface. */ export declare function instanceOfEntityId(value: object): value is EntityId; export declare function EntityIdFromJSON(json: any): EntityId; export declare function EntityIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityId; export declare function EntityIdToJSON(json: any): EntityId; export declare function EntityIdToJSONTyped(value?: EntityId | null, ignoreDiscriminator?: boolean): any;