/** * 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. */ /** * Represents the lifetime states of a profile, indicating which actions * can be performed with the associated browser engine at each state. Possible values are: * - Created: Profile is created; the associated browser engine is not started. * - Starting: The associated browser engine is starting. * - Running: The associated browser engine is currently running. * - Terminating: The associated browser engine is in the process of terminating. * - Terminated: The associated browser engine is not running but has been started at least once. * - Locked: The profile is currently being used by another user. * - Loading: The profile data or the browser engine is syncing with the cloud storage. * - Unknown: State of the profile is undefined. * @export */ export declare const ProfileLifetimeState: { readonly Created: "created"; readonly Starting: "starting"; readonly Running: "running"; readonly Terminating: "terminating"; readonly Terminated: "terminated"; readonly Locked: "locked"; readonly Loading: "loading"; readonly Unknown: "unknown"; }; export type ProfileLifetimeState = (typeof ProfileLifetimeState)[keyof typeof ProfileLifetimeState]; export declare function instanceOfProfileLifetimeState(value: any): boolean; export declare function ProfileLifetimeStateFromJSON(json: any): ProfileLifetimeState; export declare function ProfileLifetimeStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProfileLifetimeState; export declare function ProfileLifetimeStateToJSON(value?: ProfileLifetimeState | null): any; export declare function ProfileLifetimeStateToJSONTyped(value: any, ignoreDiscriminator: boolean): ProfileLifetimeState;