mirror of
https://github.com/goauthentik/authentik.git
synced 2026-06-18 03:19:51 +03:00
f4e4bfcbe5
* regenerate schema Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> * update ts client Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> --------- Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
82 lines
2.0 KiB
TypeScript
Generated
82 lines
2.0 KiB
TypeScript
Generated
/* tslint:disable */
|
|
/* eslint-disable */
|
|
/**
|
|
* authentik
|
|
* Making authentication simple.
|
|
*
|
|
* The version of the OpenAPI document: 2026.8.0-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.
|
|
*/
|
|
|
|
/**
|
|
* Group Source Connection
|
|
* @export
|
|
* @interface PatchedGroupSourceConnectionRequest
|
|
*/
|
|
export interface PatchedGroupSourceConnectionRequest {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof PatchedGroupSourceConnectionRequest
|
|
*/
|
|
source?: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof PatchedGroupSourceConnectionRequest
|
|
*/
|
|
identifier?: string;
|
|
}
|
|
|
|
/**
|
|
* Check if a given object implements the PatchedGroupSourceConnectionRequest interface.
|
|
*/
|
|
export function instanceOfPatchedGroupSourceConnectionRequest(
|
|
value: object,
|
|
): value is PatchedGroupSourceConnectionRequest {
|
|
return true;
|
|
}
|
|
|
|
export function PatchedGroupSourceConnectionRequestFromJSON(
|
|
json: any,
|
|
): PatchedGroupSourceConnectionRequest {
|
|
return PatchedGroupSourceConnectionRequestFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function PatchedGroupSourceConnectionRequestFromJSONTyped(
|
|
json: any,
|
|
ignoreDiscriminator: boolean,
|
|
): PatchedGroupSourceConnectionRequest {
|
|
if (json == null) {
|
|
return json;
|
|
}
|
|
return {
|
|
source: json["source"] == null ? undefined : json["source"],
|
|
identifier: json["identifier"] == null ? undefined : json["identifier"],
|
|
};
|
|
}
|
|
|
|
export function PatchedGroupSourceConnectionRequestToJSON(
|
|
json: any,
|
|
): PatchedGroupSourceConnectionRequest {
|
|
return PatchedGroupSourceConnectionRequestToJSONTyped(json, false);
|
|
}
|
|
|
|
export function PatchedGroupSourceConnectionRequestToJSONTyped(
|
|
value?: PatchedGroupSourceConnectionRequest | null,
|
|
ignoreDiscriminator: boolean = false,
|
|
): any {
|
|
if (value == null) {
|
|
return value;
|
|
}
|
|
|
|
return {
|
|
source: value["source"],
|
|
identifier: value["identifier"],
|
|
};
|
|
}
|