/** * 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 { NFSPermission, VolumeReference } from './'; /** * * @export * @interface Share */ export interface Share { /** * * @type {number} * @memberof Share */ id: number; /** * * @type {Array} * @memberof Share */ sharingNfsPermissions?: Array; /** * * @type {VolumeReference} * @memberof Share */ volume: VolumeReference; /** * * @type {string} * @memberof Share */ name: string; /** * * @type {string} * @memberof Share */ path?: string; /** * * @type {boolean} * @memberof Share */ shareSmb?: boolean; /** * * @type {boolean} * @memberof Share */ shareNfs?: boolean; /** * * @type {boolean} * @memberof Share */ shareAfp?: boolean; /** * * @type {boolean} * @memberof Share */ sharingReadOnly?: boolean; /** * * @type {boolean} * @memberof Share */ sharingHidden?: boolean; /** * * @type {boolean} * @memberof Share */ sharingRequireLogin?: boolean; /** * * @type {string} * @memberof Share */ smbExtraConfig?: string; /** * * @type {string} * @memberof Share */ afpExtraConfig?: string; /** * * @type {number} * @memberof Share */ rwAccessGroup?: number | null; /** * * @type {number} * @memberof Share */ roAccessGroup?: number | null; } export declare function ShareFromJSON(json: any): Share; export declare function ShareFromJSONTyped(json: any, ignoreDiscriminator: boolean): Share; export declare function ShareToJSON(value?: Share | null): any;