diff --git a/src/Elastic.Transport/Responses/HttpDetails/ApiCallDetails.cs b/src/Elastic.Transport/Responses/HttpDetails/ApiCallDetails.cs index 142f241..679463d 100644 --- a/src/Elastic.Transport/Responses/HttpDetails/ApiCallDetails.cs +++ b/src/Elastic.Transport/Responses/HttpDetails/ApiCallDetails.cs @@ -82,6 +82,17 @@ public string DebugInformation /// public byte[]? ResponseBodyInBytes { get; internal set; } + /// + /// The value of the Content-Type header in the response. + /// + [Obsolete("This property has been retired and replaced by ResponseContentType. " + + "Prefer using the updated property as this will be removed in a future release.")] + public string ResponseMimeType + { + get => ResponseContentType; + set => ResponseContentType = value; + } + /// /// The value of the Content-Type header in the response. ///