/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2025.6.3 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { SyncObjectModelEnum } from './SyncObjectModelEnum'; /** * Sync object serializer * @export * @interface SyncObjectRequest */ export interface SyncObjectRequest { /** * * @type {SyncObjectModelEnum} * @memberof SyncObjectRequest */ syncObjectModel: SyncObjectModelEnum; /** * * @type {string} * @memberof SyncObjectRequest */ syncObjectId: string; /** * * @type {boolean} * @memberof SyncObjectRequest */ overrideDryRun?: boolean; } /** * Check if a given object implements the SyncObjectRequest interface. */ export declare function instanceOfSyncObjectRequest(value: object): value is SyncObjectRequest; export declare function SyncObjectRequestFromJSON(json: any): SyncObjectRequest; export declare function SyncObjectRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): SyncObjectRequest; export declare function SyncObjectRequestToJSON(json: any): SyncObjectRequest; export declare function SyncObjectRequestToJSONTyped(value?: SyncObjectRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=SyncObjectRequest.d.ts.map