/** * 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. */ /** * * @export * @interface SNFSStripeGroup */ export interface SNFSStripeGroup { /** * * @type {string} * @memberof SNFSStripeGroup */ name: string; /** * * @type {Array} * @memberof SNFSStripeGroup */ statusTags: Array; /** * * @type {string} * @memberof SNFSStripeGroup */ affinity?: string | null; /** * * @type {number} * @memberof SNFSStripeGroup */ sizeTotal?: number; /** * * @type {number} * @memberof SNFSStripeGroup */ sizeUsed?: number; /** * * @type {number} * @memberof SNFSStripeGroup */ sizeFree?: number; } export declare function SNFSStripeGroupFromJSON(json: any): SNFSStripeGroup; export declare function SNFSStripeGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): SNFSStripeGroup; export declare function SNFSStripeGroupToJSON(value?: SNFSStripeGroup | null): any;