/** * 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 a Key-Value pair where Value can be a string or a boolean or an integer * @export * @interface Preference */ export interface Preference { /** * Key of the preference * @type {string} * @memberof Preference */ key: string; /** * Value of the preference. It can a string or a boolean or an integer * @type {any} * @memberof Preference */ value: any | null; } /** * Check if a given object implements the Preference interface. */ export declare function instanceOfPreference(value: object): value is Preference; export declare function PreferenceFromJSON(json: any): Preference; export declare function PreferenceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Preference; export declare function PreferenceToJSON(json: any): Preference; export declare function PreferenceToJSONTyped(value?: Preference | null, ignoreDiscriminator?: boolean): any;