/** * 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. */ /** * * @export * @interface MediaSelection */ export interface MediaSelection { /** * * @type {object} * @memberof MediaSelection */ _delete?: object; /** * * @type {string} * @memberof MediaSelection */ id?: string; } /** * Check if a given object implements the MediaSelection interface. */ export declare function instanceOfMediaSelection(value: object): value is MediaSelection; export declare function MediaSelectionFromJSON(json: any): MediaSelection; export declare function MediaSelectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaSelection; export declare function MediaSelectionToJSON(json: any): MediaSelection; export declare function MediaSelectionToJSONTyped(value?: MediaSelection | null, ignoreDiscriminator?: boolean): any;