/** * 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. */ /** * Defines the target location for profile export. * @export * @interface ExportProfileRequest */ export interface ExportProfileRequest { /** * Specifies the file path for exporting the profile. * @type {string} * @memberof ExportProfileRequest */ path: string; } /** * Check if a given object implements the ExportProfileRequest interface. */ export declare function instanceOfExportProfileRequest(value: object): value is ExportProfileRequest; export declare function ExportProfileRequestFromJSON(json: any): ExportProfileRequest; export declare function ExportProfileRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExportProfileRequest; export declare function ExportProfileRequestToJSON(json: any): ExportProfileRequest; export declare function ExportProfileRequestToJSONTyped(value?: ExportProfileRequest | null, ignoreDiscriminator?: boolean): any;