/** * 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 ResourceLink */ export interface ResourceLink { /** * The link url. * @type {string} * @memberof ResourceLink */ href: string; /** * The link method. * @type {string} * @memberof ResourceLink */ method: string; /** * Additional data about the link. * @type {string} * @memberof ResourceLink */ metadata?: string | null; } /** * Check if a given object implements the ResourceLink interface. */ export declare function instanceOfResourceLink(value: any): value is ResourceLink; export declare function ResourceLinkFromJSON(json: any): ResourceLink; export declare function ResourceLinkFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ResourceLink; export declare function ResourceLinkToJSON(value?: ResourceLink | null, _ignoreDiscriminator?: boolean): any;