/**
 * VRt.Studio [ST]
 *
 * The version of the OpenAPI document: 7.18.2755
 * Contact: servicedesk@veeroute.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator.
 * Do not edit the class manually.
 */
import { FolderCountersStudio } from './folderCounters';
import { FolderTypeStudio } from './folderType';
/**
 * Folder is an element of a virtual file system.
 */
export interface FolderStudio {
    [key: string]: any | any;
    /**
     * Key, unique identifier.
     */
    key: string;
    type: FolderTypeStudio;
    /**
     * Key, unique identifier.
     */
    parent_key?: string | null;
    /**
     * Folder name.
     */
    name: string;
    /**
     * Unique company key.
     */
    owner_company_key: string;
    /**
     * Unique username for login.
     */
    owner_username: string;
    /**
     * Folder comment.
     */
    comment?: string | null;
    /**
     * Creation date and time in the [ISO 8601](https://tools.ietf.org/html/rfc3339#section-5.6) format.
     */
    creation_date?: string | null;
    counters: FolderCountersStudio;
}
