/** * 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 OAuthSourcePropertyMapping */ export interface OAuthSourcePropertyMapping { /** * * @type {string} * @memberof OAuthSourcePropertyMapping */ readonly pk: string; /** * 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 OAuthSourcePropertyMapping */ managed?: string | null; /** * * @type {string} * @memberof OAuthSourcePropertyMapping */ name: string; /** * * @type {string} * @memberof OAuthSourcePropertyMapping */ expression: string; /** * Get object's component so that we know how to edit the object * @type {string} * @memberof OAuthSourcePropertyMapping */ readonly component: string; /** * Return object's verbose_name * @type {string} * @memberof OAuthSourcePropertyMapping */ readonly verboseName: string; /** * Return object's plural verbose_name * @type {string} * @memberof OAuthSourcePropertyMapping */ readonly verboseNamePlural: string; /** * Return internal model name * @type {string} * @memberof OAuthSourcePropertyMapping */ readonly metaModelName: string; } /** * Check if a given object implements the OAuthSourcePropertyMapping interface. */ export declare function instanceOfOAuthSourcePropertyMapping(value: object): value is OAuthSourcePropertyMapping; export declare function OAuthSourcePropertyMappingFromJSON(json: any): OAuthSourcePropertyMapping; export declare function OAuthSourcePropertyMappingFromJSONTyped(json: any, ignoreDiscriminator: boolean): OAuthSourcePropertyMapping; export declare function OAuthSourcePropertyMappingToJSON(json: any): OAuthSourcePropertyMapping; export declare function OAuthSourcePropertyMappingToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=OAuthSourcePropertyMapping.d.ts.map