/** * kameleo-local-api * You can use the following API endpoints to communicate with the local running Kameleo programmatically. * * The version of the OpenAPI document: 4.4.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ShareAccess } from "./ShareAccess"; import type { ProfilePreview } from "./ProfilePreview"; /** * * @export * @interface FolderResponse */ export interface FolderResponse { /** * A unique identifier of the folder. * @type {string} * @memberof FolderResponse */ id: string; /** * The name of the folder. * @type {string} * @memberof FolderResponse */ name: string; /** * Timestamp of the last modification. * @type {Date} * @memberof FolderResponse */ lastModifiedAt: Date; /** * Name of the user who last modified the folder. * @type {string} * @memberof FolderResponse */ lastModifiedBy: string; /** * Timestamp of the creation. * @type {Date} * @memberof FolderResponse */ createdAt: Date; /** * Name of the user who created the folder. * @type {string} * @memberof FolderResponse */ createdBy: string; /** * List of profiles in the current folder. * @type {Array} * @memberof FolderResponse */ profiles: Array; /** * List of users accessing this folder. * @type {Array} * @memberof FolderResponse */ shareAccesses: Array; } /** * Check if a given object implements the FolderResponse interface. */ export declare function instanceOfFolderResponse(value: object): value is FolderResponse; export declare function FolderResponseFromJSON(json: any): FolderResponse; export declare function FolderResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): FolderResponse; export declare function FolderResponseToJSON(json: any): FolderResponse; export declare function FolderResponseToJSONTyped(value?: FolderResponse | null, ignoreDiscriminator?: boolean): any;