/** * 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 { Reference } from './Reference'; /** * JSON schema for Entity Group Record POJO * @export * @interface EntityGroupRecord */ export interface EntityGroupRecord { /** * * @type {Reference} * @memberof EntityGroupRecord */ entityReference?: Reference; /** * A note for this record * @type {string} * @memberof EntityGroupRecord */ note?: string; } /** * Check if a given object implements the EntityGroupRecord interface. */ export declare function instanceOfEntityGroupRecord(value: object): value is EntityGroupRecord; export declare function EntityGroupRecordFromJSON(json: any): EntityGroupRecord; export declare function EntityGroupRecordFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityGroupRecord; export declare function EntityGroupRecordToJSON(json: any): EntityGroupRecord; export declare function EntityGroupRecordToJSONTyped(value?: EntityGroupRecord | null, ignoreDiscriminator?: boolean): any;