/** * 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 { TapeReference } from './'; /** * * @export * @interface TapeGroup */ export interface TapeGroup { /** * * @type {number} * @memberof TapeGroup */ id: number; /** * * @type {Array} * @memberof TapeGroup */ tapes: Array; /** * * @type {string} * @memberof TapeGroup */ name: string; } export declare function TapeGroupFromJSON(json: any): TapeGroup; export declare function TapeGroupFromJSONTyped(json: any, ignoreDiscriminator: boolean): TapeGroup; export declare function TapeGroupToJSON(value?: TapeGroup | null): any;