/** * 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. */ /** * OAuthSourcePropertyMapping Serializer * @export * @interface OAuthSourcePropertyMappingRequest */ export interface OAuthSourcePropertyMappingRequest { /** * 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 OAuthSourcePropertyMappingRequest */ managed?: string | null; /** * * @type {string} * @memberof OAuthSourcePropertyMappingRequest */ name: string; /** * * @type {string} * @memberof OAuthSourcePropertyMappingRequest */ expression: string; } /** * Check if a given object implements the OAuthSourcePropertyMappingRequest interface. */ export declare function instanceOfOAuthSourcePropertyMappingRequest(value: object): value is OAuthSourcePropertyMappingRequest; export declare function OAuthSourcePropertyMappingRequestFromJSON(json: any): OAuthSourcePropertyMappingRequest; export declare function OAuthSourcePropertyMappingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthSourcePropertyMappingRequest; export declare function OAuthSourcePropertyMappingRequestToJSON(json: any): OAuthSourcePropertyMappingRequest; export declare function OAuthSourcePropertyMappingRequestToJSONTyped(value?: OAuthSourcePropertyMappingRequest | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OAuthSourcePropertyMappingRequest.d.ts.map