UNPKG

@datadog/datadog-api-client

Version:

OpenAPI client for Datadog APIs

19 lines (18 loc) 1.1 kB
/** * Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License. * This product includes software developed at Datadog (https://www.datadoghq.com/). * Copyright 2020-Present Datadog, Inc. */ import { UnparsedObject } from "../../datadog-api-client-common/util"; /** * Type of the request body. */ export declare type SyntheticsTestRequestBodyType = typeof TEXT_PLAIN | typeof APPLICATION_JSON | typeof TEXT_XML | typeof TEXT_HTML | typeof APPLICATION_X_WWW_FORM_URLENCODED | typeof GRAPHQL | typeof APPLICATION_OCTET_STREAM | typeof MULTIPART_FORM_DATA | UnparsedObject; export declare const TEXT_PLAIN = "text/plain"; export declare const APPLICATION_JSON = "application/json"; export declare const TEXT_XML = "text/xml"; export declare const TEXT_HTML = "text/html"; export declare const APPLICATION_X_WWW_FORM_URLENCODED = "application/x-www-form-urlencoded"; export declare const GRAPHQL = "graphql"; export declare const APPLICATION_OCTET_STREAM = "application/octet-stream"; export declare const MULTIPART_FORM_DATA = "multipart/form-data";