/** * 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 { ShareAccessRequest } from "./ShareAccessRequest"; /** * * @export * @interface ShareGroupRequest */ export interface ShareGroupRequest { /** * List of share accesses to the folder. * @type {Array} * @memberof ShareGroupRequest */ shareAccesses: Array; } /** * Check if a given object implements the ShareGroupRequest interface. */ export declare function instanceOfShareGroupRequest(value: object): value is ShareGroupRequest; export declare function ShareGroupRequestFromJSON(json: any): ShareGroupRequest; export declare function ShareGroupRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShareGroupRequest; export declare function ShareGroupRequestToJSON(json: any): ShareGroupRequest; export declare function ShareGroupRequestToJSONTyped(value?: ShareGroupRequest | null, ignoreDiscriminator?: boolean): any;