/** * 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. */ /** * - HTTP_METHOD_UNSPECIFIED: HTTP method not specified * @export */ export declare const ModelHTTPMethod: { readonly HttpMethodUnspecified: "HTTP_METHOD_UNSPECIFIED"; readonly HttpMethodGet: "HTTP_METHOD_GET"; readonly HttpMethodPost: "HTTP_METHOD_POST"; readonly HttpMethodPut: "HTTP_METHOD_PUT"; readonly HttpMethodDelete: "HTTP_METHOD_DELETE"; readonly HttpMethodPatch: "HTTP_METHOD_PATCH"; readonly HttpMethodOptions: "HTTP_METHOD_OPTIONS"; readonly HttpMethodHead: "HTTP_METHOD_HEAD"; }; export type ModelHTTPMethod = typeof ModelHTTPMethod[keyof typeof ModelHTTPMethod]; export declare function instanceOfModelHTTPMethod(value: any): boolean; export declare function ModelHTTPMethodFromJSON(json: any): ModelHTTPMethod; export declare function ModelHTTPMethodFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelHTTPMethod; export declare function ModelHTTPMethodToJSON(value?: ModelHTTPMethod | null): any; export declare function ModelHTTPMethodToJSONTyped(value: any, ignoreDiscriminator: boolean): ModelHTTPMethod;