Class HttpResponse
Represents an HTTP response.
Implements
Inherited Members
Namespace: Google.Apis.GoogleHealthAPI.v4.Data
Assembly: Google.Apis.GoogleHealthAPI.v4.dll
Syntax
public class HttpResponse : IDirectResponseSchema
Properties
Body
The HTTP response body. If the body is not expected, it should be empty.
Declaration
[JsonProperty("body")]
public virtual string Body { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Headers
The HTTP response headers. The ordering of the headers is significant. Multiple headers with the same key may present for the response.
Declaration
[JsonProperty("headers")]
public virtual IList<HttpHeader> Headers { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<HttpHeader> |
Reason
The HTTP reason phrase, such as "OK" or "Not Found".
Declaration
[JsonProperty("reason")]
public virtual string Reason { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Status
The HTTP status code, such as 200 or 404.
Declaration
[JsonProperty("status")]
public virtual int? Status { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |