/** * 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 UserGroup POJO * @export * @interface UserGroup */ export interface UserGroup { /** * The id of either the user or group. * @type {string} * @memberof UserGroup */ id?: string; /** * True if this is a user, false if it is a group * @type {boolean} * @memberof UserGroup */ isIndividual?: boolean; /** * Used to detect when a client's current representation of a user or group is out-of-date. * @type {string} * @memberof UserGroup */ etag?: string; /** * The date this user or group was created. * @type {string} * @memberof UserGroup */ creationDate?: string; /** * * @type {string} * @memberof UserGroup */ realmId?: string; /** * * @type {string} * @memberof UserGroup */ uri?: string; } /** * Check if a given object implements the UserGroup interface. */ export declare function instanceOfUserGroup(value: object): value is UserGroup; export declare function UserGroupFromJSON(json: any): UserGroup; export declare function UserGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserGroup; export declare function UserGroupToJSON(json: any): UserGroup; export declare function UserGroupToJSONTyped(value?: UserGroup | null, ignoreDiscriminator?: boolean): any;