/** * ELEMENTS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { MemberPreview } from './'; /** * * @export * @interface ElementsGroupReference */ export interface ElementsGroupReference { /** * * @type {number} * @memberof ElementsGroupReference */ id: number; /** * * @type {Array} * @memberof ElementsGroupReference */ readonly permissions?: Array; /** * * @type {Array} * @memberof ElementsGroupReference */ readonly membersPreview?: Array; /** * * @type {Array} * @memberof ElementsGroupReference */ readonly effectivePermissions?: Array; /** * * @type {string} * @memberof ElementsGroupReference */ readonly ancillaryPath?: string | null; /** * * @type {string} * @memberof ElementsGroupReference */ readonly ancillaryPathReadOnly?: string | null; /** * * @type {string} * @memberof ElementsGroupReference */ readonly name?: string; /** * * @type {string} * @memberof ElementsGroupReference */ readonly ldapDn?: string | null; /** * * @type {string} * @memberof ElementsGroupReference */ readonly unixGroupname?: string | null; /** * * @type {number} * @memberof ElementsGroupReference */ readonly gid?: number | null; /** * * @type {number} * @memberof ElementsGroupReference */ readonly ldap?: number | null; /** * * @type {Array} * @memberof ElementsGroupReference */ readonly members?: Array; } export declare function ElementsGroupReferenceFromJSON(json: any): ElementsGroupReference; export declare function ElementsGroupReferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): ElementsGroupReference; export declare function ElementsGroupReferenceToJSON(value?: ElementsGroupReference | null): any;