/** * 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. */ /** * TelegramSourcePropertyMapping Serializer * @export * @interface TelegramSourcePropertyMappingRequest */ export interface TelegramSourcePropertyMappingRequest { /** * Objects that are managed by authentik. These objects are created and updated automatically. This flag only indicates that an object can be overwritten by migrations. You can still modify the objects via the API, but expect changes to be overwritten in a later update. * @type {string} * @memberof TelegramSourcePropertyMappingRequest */ managed?: string | null; /** * * @type {string} * @memberof TelegramSourcePropertyMappingRequest */ name: string; /** * * @type {string} * @memberof TelegramSourcePropertyMappingRequest */ expression: string; } /** * Check if a given object implements the TelegramSourcePropertyMappingRequest interface. */ export declare function instanceOfTelegramSourcePropertyMappingRequest(value: object): value is TelegramSourcePropertyMappingRequest; export declare function TelegramSourcePropertyMappingRequestFromJSON(json: any): TelegramSourcePropertyMappingRequest; export declare function TelegramSourcePropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TelegramSourcePropertyMappingRequest; export declare function TelegramSourcePropertyMappingRequestToJSON(json: any): TelegramSourcePropertyMappingRequest; export declare function TelegramSourcePropertyMappingRequestToJSONTyped(value?: TelegramSourcePropertyMappingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=TelegramSourcePropertyMappingRequest.d.ts.map