/** * 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. */ /** * * @export * @interface ShareAccessRequest */ export interface ShareAccessRequest { /** * Id of the selected role. * @type {string} * @memberof ShareAccessRequest */ roleId: string; /** * Id of the selected user. * @type {string} * @memberof ShareAccessRequest */ userId: string; } /** * Check if a given object implements the ShareAccessRequest interface. */ export declare function instanceOfShareAccessRequest(value: object): value is ShareAccessRequest; export declare function ShareAccessRequestFromJSON(json: any): ShareAccessRequest; export declare function ShareAccessRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShareAccessRequest; export declare function ShareAccessRequestToJSON(json: any): ShareAccessRequest; export declare function ShareAccessRequestToJSONTyped(value?: ShareAccessRequest | null, ignoreDiscriminator?: boolean): any;