/** * 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 Reference POJO * @export * @interface Reference */ export interface Reference { /** * The the id of the entity to which this reference refers * @type {string} * @memberof Reference */ targetId?: string; /** * The version number of the entity to which this reference refers * @type {number} * @memberof Reference */ targetVersionNumber?: number; } /** * Check if a given object implements the Reference interface. */ export declare function instanceOfReference(value: object): value is Reference; export declare function ReferenceFromJSON(json: any): Reference; export declare function ReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Reference; export declare function ReferenceToJSON(json: any): Reference; export declare function ReferenceToJSONTyped(value?: Reference | null, ignoreDiscriminator?: boolean): any;