/** * 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'; /** * * @export * @interface ResourcesDto */ export interface ResourcesDto { /** * The links. * @type {{ [key: string]: ResourceLink; }} * @memberof ResourcesDto */ links: { [key: string]: ResourceLink; }; } /** * Check if a given object implements the ResourcesDto interface. */ export declare function instanceOfResourcesDto(value: any): value is ResourcesDto; export declare function ResourcesDtoFromJSON(json: any): ResourcesDto; export declare function ResourcesDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ResourcesDto; export declare function ResourcesDtoToJSON(value?: ResourcesDto | null, _ignoreDiscriminator?: boolean): any;