/** * 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 { EntityGroupRecord } from './EntityGroupRecord'; /** * JSON schema for an Entity Group POJO * @export * @interface EntityGroup */ export interface EntityGroup { /** * The name of this entity * @type {string} * @memberof EntityGroup */ name?: string; /** * The description of this entity. * @type {string} * @memberof EntityGroup */ description?: string; /** * The set of EntityGroupRecords for this group. * @type {Array} * @memberof EntityGroup */ records?: Array; } /** * Check if a given object implements the EntityGroup interface. */ export declare function instanceOfEntityGroup(value: object): value is EntityGroup; export declare function EntityGroupFromJSON(json: any): EntityGroup; export declare function EntityGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): EntityGroup; export declare function EntityGroupToJSON(json: any): EntityGroup; export declare function EntityGroupToJSONTyped(value?: EntityGroup | null, ignoreDiscriminator?: boolean): any;