/** * 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 SharingOptionsResponse */ export interface SharingOptionsResponse { /** * List of users in your team. * @type {Array} * @memberof SharingOptionsResponse */ users?: Array | null; /** * List of roles you can give the users. * @type {Array} * @memberof SharingOptionsResponse */ roles?: Array | null; } /** * Check if a given object implements the SharingOptionsResponse interface. */ export declare function instanceOfSharingOptionsResponse(value: object): value is SharingOptionsResponse; export declare function SharingOptionsResponseFromJSON(json: any): SharingOptionsResponse; export declare function SharingOptionsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SharingOptionsResponse; export declare function SharingOptionsResponseToJSON(json: any): SharingOptionsResponse; export declare function SharingOptionsResponseToJSONTyped(value?: SharingOptionsResponse | null, ignoreDiscriminator?: boolean): any;