/** * 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 { DeviceAccessGroupRequest } from './DeviceAccessGroupRequest'; /** * * @export * @interface PatchedEndpointDeviceRequest */ export interface PatchedEndpointDeviceRequest { /** * * @type {string} * @memberof PatchedEndpointDeviceRequest */ deviceUuid?: string; /** * * @type {string} * @memberof PatchedEndpointDeviceRequest */ name?: string; /** * * @type {string} * @memberof PatchedEndpointDeviceRequest */ accessGroup?: string | null; /** * * @type {DeviceAccessGroupRequest} * @memberof PatchedEndpointDeviceRequest */ accessGroupObj?: DeviceAccessGroupRequest; /** * * @type {boolean} * @memberof PatchedEndpointDeviceRequest */ expiring?: boolean; /** * * @type {Date} * @memberof PatchedEndpointDeviceRequest */ expires?: Date | null; /** * * @type {{ [key: string]: any; }} * @memberof PatchedEndpointDeviceRequest */ attributes?: { [key: string]: any; }; } /** * Check if a given object implements the PatchedEndpointDeviceRequest interface. */ export declare function instanceOfPatchedEndpointDeviceRequest(value: object): value is PatchedEndpointDeviceRequest; export declare function PatchedEndpointDeviceRequestFromJSON(json: any): PatchedEndpointDeviceRequest; export declare function PatchedEndpointDeviceRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PatchedEndpointDeviceRequest; export declare function PatchedEndpointDeviceRequestToJSON(json: any): PatchedEndpointDeviceRequest; export declare function PatchedEndpointDeviceRequestToJSONTyped(value?: PatchedEndpointDeviceRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=PatchedEndpointDeviceRequest.d.ts.map