/** * The Association for Cube Commons * The CubeCommons API caters to each and every whim of the Frontend, i.e. it receives, bundles, packages and formats data exactly as the Frontend needs it. * * The version of the OpenAPI document: 0.9.95 * Contact: tech@cubecommons.ca * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { FilesDetailsResponsePlayerInfo } from './files-details-response-player-info'; /** * FilesDetailsResponse * @export * @interface FilesDetailsResponse */ export interface FilesDetailsResponse { /** * * @type {string} * @memberof FilesDetailsResponse */ 'id': string; /** * * @type {string} * @memberof FilesDetailsResponse */ 'createdAt': string; /** * * @type {string} * @memberof FilesDetailsResponse */ 'updatedAt': string; /** * * @type {string} * @memberof FilesDetailsResponse */ 'storageType': string; /** * * @type {FilesDetailsResponsePlayerInfo} * @memberof FilesDetailsResponse */ 'playerInfo': FilesDetailsResponsePlayerInfo; }