/** * authentik * Making authentication simple. * * The version of the OpenAPI document: 2026.2.3-rc1 * 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 { DeviceFactsOSFamily } from './DeviceFactsOSFamily'; /** * Base serializer class which doesn't implement create/update methods * @export * @interface MDMConfigRequest */ export interface MDMConfigRequest { /** * * @type {DeviceFactsOSFamily} * @memberof MDMConfigRequest */ platform: DeviceFactsOSFamily; /** * * @type {string} * @memberof MDMConfigRequest */ enrollmentToken: string; } /** * Check if a given object implements the MDMConfigRequest interface. */ export declare function instanceOfMDMConfigRequest(value: object): value is MDMConfigRequest; export declare function MDMConfigRequestFromJSON(json: any): MDMConfigRequest; export declare function MDMConfigRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): MDMConfigRequest; export declare function MDMConfigRequestToJSON(json: any): MDMConfigRequest; export declare function MDMConfigRequestToJSONTyped(value?: MDMConfigRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=MDMConfigRequest.d.ts.map