/** * 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'; /** * UpdateLinkSettingResponse returns the link-setting profile after applying changes. * @export * @interface UpdateLinkSettingResponse */ export interface UpdateLinkSettingResponse { /** * * @type {LinkSetting} * @memberof UpdateLinkSettingResponse */ linkSetting?: LinkSetting; } /** * Check if a given object implements the UpdateLinkSettingResponse interface. */ export declare function instanceOfUpdateLinkSettingResponse(value: object): value is UpdateLinkSettingResponse; export declare function UpdateLinkSettingResponseFromJSON(json: any): UpdateLinkSettingResponse; export declare function UpdateLinkSettingResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateLinkSettingResponse; export declare function UpdateLinkSettingResponseToJSON(json: any): UpdateLinkSettingResponse; export declare function UpdateLinkSettingResponseToJSONTyped(value?: UpdateLinkSettingResponse | null, ignoreDiscriminator?: boolean): any;