/** * 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. */ /** * Represents a reference to the id and version of an entity to be used in collections. * @export * @interface EntityRef */ export interface EntityRef { /** * The 'syn' identifier of the entity. Required. * @type {string} * @memberof EntityRef */ entityId?: string; /** * Indicates a specific version of a the entity. Required. * @type {number} * @memberof EntityRef */ versionNumber?: number; } /** * Check if a given object implements the EntityRef interface. */ export declare function instanceOfEntityRef(value: object): value is EntityRef; export declare function EntityRefFromJSON(json: any): EntityRef; export declare function EntityRefFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityRef; export declare function EntityRefToJSON(json: any): EntityRef; export declare function EntityRefToJSONTyped(value?: EntityRef | null, ignoreDiscriminator?: boolean): any;