/** * 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 */ export declare const BulkUpdateContentType: { readonly Upsert: "Upsert"; readonly ChangeStatus: "ChangeStatus"; readonly Create: "Create"; readonly Delete: "Delete"; readonly Patch: "Patch"; readonly Update: "Update"; readonly Validate: "Validate"; readonly EnrichDefaults: "EnrichDefaults"; }; export type BulkUpdateContentType = typeof BulkUpdateContentType[keyof typeof BulkUpdateContentType]; export declare function instanceOfBulkUpdateContentType(value: any): boolean; export declare function BulkUpdateContentTypeFromJSON(json: any): BulkUpdateContentType; export declare function BulkUpdateContentTypeFromJSONTyped(json: any, _ignoreDiscriminator: boolean): BulkUpdateContentType; export declare function BulkUpdateContentTypeToJSON(value?: BulkUpdateContentType | null): any;