/** * 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. */ /** * * @export * @interface Software */ export interface Software { /** * * @type {string} * @memberof Software */ name: string; /** * * @type {string} * @memberof Software */ version?: string; /** * * @type {string} * @memberof Software */ source: string; /** * * @type {string} * @memberof Software */ path?: string; } /** * Check if a given object implements the Software interface. */ export declare function instanceOfSoftware(value: object): value is Software; export declare function SoftwareFromJSON(json: any): Software; export declare function SoftwareFromJSONTyped(json: any, ignoreDiscriminator: boolean): Software; export declare function SoftwareToJSON(json: any): Software; export declare function SoftwareToJSONTyped(value?: Software | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Software.d.ts.map