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>
84 lines
2.1 KiB
TypeScript
Generated
84 lines
2.1 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.
|
|
*/
|
|
|
|
/**
|
|
* User source connection
|
|
* @export
|
|
* @interface UserTelegramSourceConnectionRequest
|
|
*/
|
|
export interface UserTelegramSourceConnectionRequest {
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UserTelegramSourceConnectionRequest
|
|
*/
|
|
source: string;
|
|
/**
|
|
*
|
|
* @type {string}
|
|
* @memberof UserTelegramSourceConnectionRequest
|
|
*/
|
|
identifier: string;
|
|
}
|
|
|
|
/**
|
|
* Check if a given object implements the UserTelegramSourceConnectionRequest interface.
|
|
*/
|
|
export function instanceOfUserTelegramSourceConnectionRequest(
|
|
value: object,
|
|
): value is UserTelegramSourceConnectionRequest {
|
|
if (!("source" in value) || value["source"] === undefined) return false;
|
|
if (!("identifier" in value) || value["identifier"] === undefined) return false;
|
|
return true;
|
|
}
|
|
|
|
export function UserTelegramSourceConnectionRequestFromJSON(
|
|
json: any,
|
|
): UserTelegramSourceConnectionRequest {
|
|
return UserTelegramSourceConnectionRequestFromJSONTyped(json, false);
|
|
}
|
|
|
|
export function UserTelegramSourceConnectionRequestFromJSONTyped(
|
|
json: any,
|
|
ignoreDiscriminator: boolean,
|
|
): UserTelegramSourceConnectionRequest {
|
|
if (json == null) {
|
|
return json;
|
|
}
|
|
return {
|
|
source: json["source"],
|
|
identifier: json["identifier"],
|
|
};
|
|
}
|
|
|
|
export function UserTelegramSourceConnectionRequestToJSON(
|
|
json: any,
|
|
): UserTelegramSourceConnectionRequest {
|
|
return UserTelegramSourceConnectionRequestToJSONTyped(json, false);
|
|
}
|
|
|
|
export function UserTelegramSourceConnectionRequestToJSONTyped(
|
|
value?: UserTelegramSourceConnectionRequest | null,
|
|
ignoreDiscriminator: boolean = false,
|
|
): any {
|
|
if (value == null) {
|
|
return value;
|
|
}
|
|
|
|
return {
|
|
source: value["source"],
|
|
identifier: value["identifier"],
|
|
};
|
|
}
|