/** * 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 { ResourceLink } from './ResourceLink'; import type { SchemaDto } from './SchemaDto'; /** * * @export * @interface SchemasDto */ export interface SchemasDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof SchemasDto */ links: { [key: string]: ResourceLink; }; /** * The schemas. * @type {Array} * @memberof SchemasDto */ items: Array; } /** * Check if a given object implements the SchemasDto interface. */ export declare function instanceOfSchemasDto(value: any): value is SchemasDto; export declare function SchemasDtoFromJSON(json: any): SchemasDto; export declare function SchemasDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): SchemasDto; export declare function SchemasDtoToJSON(value?: SchemasDto | null, _ignoreDiscriminator?: boolean): any;