/** * 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 User */ export interface User { /** * Unique identifier of the user. * @type {string} * @memberof User */ id: string; /** * Dispaly name of the user. * @type {string} * @memberof User */ name: string; /** * Email address of the user. * @type {string} * @memberof User */ email: string; } /** * Check if a given object implements the User interface. */ export declare function instanceOfUser(value: object): value is User; export declare function UserFromJSON(json: any): User; export declare function UserFromJSONTyped(json: any, ignoreDiscriminator: boolean): User; export declare function UserToJSON(json: any): User; export declare function UserToJSONTyped(value?: User | null, ignoreDiscriminator?: boolean): any;