/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.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 UpdateSettingDto */ export interface UpdateSettingDto { /** * The value for the setting. * @type {any} * @memberof UpdateSettingDto */ value: any | null; } /** * Check if a given object implements the UpdateSettingDto interface. */ export declare function instanceOfUpdateSettingDto(value: any): value is UpdateSettingDto; export declare function UpdateSettingDtoFromJSON(json: any): UpdateSettingDto; export declare function UpdateSettingDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): UpdateSettingDto; export declare function UpdateSettingDtoToJSON(value?: UpdateSettingDto | null, _ignoreDiscriminator?: boolean): any;