/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * 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 Link */ export interface Link { /** * * @type {string} * @memberof Link */ href?: string; /** * * @type {boolean} * @memberof Link */ readonly templated?: boolean; /** * * @type {string} * @memberof Link */ method?: string; /** * * @type {string} * @memberof Link */ type?: string; /** * * @type {string} * @memberof Link */ deprecation?: string; /** * * @type {string} * @memberof Link */ name?: string; /** * * @type {string} * @memberof Link */ profile?: string; /** * * @type {string} * @memberof Link */ title?: string; /** * * @type {string} * @memberof Link */ hreflang?: string; } /** * Check if a given object implements the Link interface. */ export declare function instanceOfLink(value: object): boolean; export declare function LinkFromJSON(json: any): Link; export declare function LinkFromJSONTyped(json: any, ignoreDiscriminator: boolean): Link; export declare function LinkToJSON(value?: Link | null): any;