/** * 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. */ /** * - TYPE_UNSPECIFIED: The media type is not specified * - TYPE_CENTRAL_QRCODE_IMAGE: The media type is a central QR code image * - TYPE_BACKGROUND_COVER: The media type is a background cover for page themes * - TYPE_BADGE: The media type is a badge image for page themes * @export */ export declare const MediaType: { readonly TypeUnspecified: "TYPE_UNSPECIFIED"; readonly TypeCentralQrcodeImage: "TYPE_CENTRAL_QRCODE_IMAGE"; readonly TypeBackgroundCover: "TYPE_BACKGROUND_COVER"; readonly TypeBadge: "TYPE_BADGE"; }; export type MediaType = typeof MediaType[keyof typeof MediaType]; export declare function instanceOfMediaType(value: any): boolean; export declare function MediaTypeFromJSON(json: any): MediaType; export declare function MediaTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): MediaType; export declare function MediaTypeToJSON(value?: MediaType | null): any; export declare function MediaTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): MediaType;