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