/** * 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. */ /** * ResponseFormat defines the transport format the API should return for list-style endpoints. * * - RESPONSE_FORMAT_UNSPECIFIED: Response format not specified * - RESPONSE_FORMAT_JSON: Response format JSON * - RESPONSE_FORMAT_CSV: Response format CSV * @export */ export declare const ResponseFormat: { readonly ResponseFormatUnspecified: "RESPONSE_FORMAT_UNSPECIFIED"; readonly ResponseFormatJson: "RESPONSE_FORMAT_JSON"; readonly ResponseFormatCsv: "RESPONSE_FORMAT_CSV"; }; export type ResponseFormat = typeof ResponseFormat[keyof typeof ResponseFormat]; export declare function instanceOfResponseFormat(value: any): boolean; export declare function ResponseFormatFromJSON(json: any): ResponseFormat; export declare function ResponseFormatFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResponseFormat; export declare function ResponseFormatToJSON(value?: ResponseFormat | null): any; export declare function ResponseFormatToJSONTyped(value: any, ignoreDiscriminator: boolean): ResponseFormat;