/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * 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 AuthSchemeDto */ export interface AuthSchemeDto { /** * The domain name of your user accounts. * @type {string} * @memberof AuthSchemeDto */ domain: string; /** * The display name for buttons. * @type {string} * @memberof AuthSchemeDto */ displayName: string; /** * The client ID. * @type {string} * @memberof AuthSchemeDto */ clientId: string; /** * The client secret. * @type {string} * @memberof AuthSchemeDto */ clientSecret: string; /** * The authority URL. * @type {string} * @memberof AuthSchemeDto */ authority: string; /** * The URL to redirect after a signout. * @type {string} * @memberof AuthSchemeDto */ signoutRedirectUrl?: string | null; } /** * Check if a given object implements the AuthSchemeDto interface. */ export declare function instanceOfAuthSchemeDto(value: any): value is AuthSchemeDto; export declare function AuthSchemeDtoFromJSON(json: any): AuthSchemeDto; export declare function AuthSchemeDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AuthSchemeDto; export declare function AuthSchemeDtoToJSON(value?: AuthSchemeDto | null, _ignoreDiscriminator?: boolean): any;