/** * 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 { User } from "./User"; import type { GroupRole } from "./GroupRole"; /** * * @export * @interface ShareAccess */ export interface ShareAccess { /** * User accessing this folder. * @type {User} * @memberof ShareAccess */ user: User; /** * Level of access to the folder. * @type {GroupRole} * @memberof ShareAccess */ role: GroupRole; /** * Timestamp when the acess was granted to the user. * @type {Date} * @memberof ShareAccess */ sharedAt: Date; } /** * Check if a given object implements the ShareAccess interface. */ export declare function instanceOfShareAccess(value: object): value is ShareAccess; export declare function ShareAccessFromJSON(json: any): ShareAccess; export declare function ShareAccessFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShareAccess; export declare function ShareAccessToJSON(json: any): ShareAccess; export declare function ShareAccessToJSONTyped(value?: ShareAccess | null, ignoreDiscriminator?: boolean): any;