/** * Kinde Management API * Provides endpoints to manage your Kinde Businesses * * The version of the OpenAPI document: 1 * Contact: support@kinde.com * * 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 ConnectedAppsAuthUrl */ export interface ConnectedAppsAuthUrl { /** * A URL that is used to authenticate an end-user against a connected app. * @type {string} * @memberof ConnectedAppsAuthUrl */ url?: string; /** * A unique identifier for the login session. * @type {string} * @memberof ConnectedAppsAuthUrl */ sessionId?: string; } /** * Check if a given object implements the ConnectedAppsAuthUrl interface. */ export declare function instanceOfConnectedAppsAuthUrl(value: object): boolean; export declare function ConnectedAppsAuthUrlFromJSON(json: any): ConnectedAppsAuthUrl; export declare function ConnectedAppsAuthUrlFromJSONTyped(json: any, ignoreDiscriminator: boolean): ConnectedAppsAuthUrl; export declare function ConnectedAppsAuthUrlToJSON(value?: ConnectedAppsAuthUrl | null): any;