/** * 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 { DataCollection } from './DataCollection'; /** * UpdateLinkSettingRequest changes the visitor-data policy tied to a specific link. * @export * @interface SettingsServiceUpdateLinkSettingBody */ export interface SettingsServiceUpdateLinkSettingBody { /** * * @type {DataCollection} * @memberof SettingsServiceUpdateLinkSettingBody */ dataCollection?: DataCollection; } /** * Check if a given object implements the SettingsServiceUpdateLinkSettingBody interface. */ export declare function instanceOfSettingsServiceUpdateLinkSettingBody(value: object): value is SettingsServiceUpdateLinkSettingBody; export declare function SettingsServiceUpdateLinkSettingBodyFromJSON(json: any): SettingsServiceUpdateLinkSettingBody; export declare function SettingsServiceUpdateLinkSettingBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): SettingsServiceUpdateLinkSettingBody; export declare function SettingsServiceUpdateLinkSettingBodyToJSON(json: any): SettingsServiceUpdateLinkSettingBody; export declare function SettingsServiceUpdateLinkSettingBodyToJSONTyped(value?: SettingsServiceUpdateLinkSettingBody | null, ignoreDiscriminator?: boolean): any;