pub use typespec_client_core::http::headers::*;
pub const CLIENT_REQUEST_ID: HeaderName = HeaderName::from_static("x-ms-client-request-id");
pub const ERROR_CODE: HeaderName = HeaderName::from_static("x-ms-error-code");
pub const MS_DATE: HeaderName = HeaderName::from_static("x-ms-date");
pub(crate) const REQUEST_ID: HeaderName = HeaderName::from_static("x-ms-request-id");
pub const RETRY_AFTER_MS: HeaderName = HeaderName::from_static("retry-after-ms");
pub const VERSION: HeaderName = HeaderName::from_static("x-ms-version");
pub const X_MS_RETRY_AFTER_MS: HeaderName = HeaderName::from_static("x-ms-retry-after-ms");
pub mod content_type {
use crate::http::headers::HeaderValue;
pub const APPLICATION_X_WWW_FORM_URLENCODED: HeaderValue =
HeaderValue::from_static("application/x-www-form-urlencoded");
}