/** * 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. */ import type { AuthSchemeDto } from './AuthSchemeDto'; import type { ResourceLink } from './ResourceLink'; /** * * @export * @interface AuthSchemeResponseDto */ export interface AuthSchemeResponseDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof AuthSchemeResponseDto */ links: { [key: string]: ResourceLink; }; /** * * @type {AuthSchemeDto} * @memberof AuthSchemeResponseDto */ scheme?: AuthSchemeDto; } /** * Check if a given object implements the AuthSchemeResponseDto interface. */ export declare function instanceOfAuthSchemeResponseDto(value: any): value is AuthSchemeResponseDto; export declare function AuthSchemeResponseDtoFromJSON(json: any): AuthSchemeResponseDto; export declare function AuthSchemeResponseDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): AuthSchemeResponseDto; export declare function AuthSchemeResponseDtoToJSON(value?: AuthSchemeResponseDto | null, _ignoreDiscriminator?: boolean): any;