/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 { LinkSetting } from './LinkSetting'; /** * GetLinkSettingResponse returns the link-setting profile for inspection in the dashboard. * @export * @interface GetLinkSettingResponse */ export interface GetLinkSettingResponse { /** * * @type {LinkSetting} * @memberof GetLinkSettingResponse */ linkSetting?: LinkSetting; } /** * Check if a given object implements the GetLinkSettingResponse interface. */ export declare function instanceOfGetLinkSettingResponse(value: object): value is GetLinkSettingResponse; export declare function GetLinkSettingResponseFromJSON(json: any): GetLinkSettingResponse; export declare function GetLinkSettingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetLinkSettingResponse; export declare function GetLinkSettingResponseToJSON(json: any): GetLinkSettingResponse; export declare function GetLinkSettingResponseToJSONTyped(value?: GetLinkSettingResponse | null, ignoreDiscriminator?: boolean): any;