Show / Hide Table of Contents

Class Response

A container object for response attributes.

Inheritance
object
Response
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.AuditService.Models
Assembly: OCI.DotNetSDK.Audit.dll
Syntax
public class Response

Properties

Headers

Declaration
[JsonProperty(PropertyName = "headers")]
public Dictionary<string, List<string>> Headers { get; set; }
Property Value
Type Description
Dictionary<string, List<string>>

Message

Declaration
[JsonProperty(PropertyName = "message")]
public string Message { get; set; }
Property Value
Type Description
string

A friendly description of what happened during the operation. Use this for troubleshooting.

Payload

Declaration
[JsonProperty(PropertyName = "payload")]
public Dictionary<string, object> Payload { get; set; }
Property Value
Type Description
Dictionary<string, object>

ResponseTime

Declaration
[JsonProperty(PropertyName = "responseTime")]
public DateTime? ResponseTime { get; set; }
Property Value
Type Description
DateTime?

The time of the response to the audited request, expressed in RFC 3339 timestamp format.
Example: 2019-09-18T00:10:59.278Z

Status

Declaration
[JsonProperty(PropertyName = "status")]
public string Status { get; set; }
Property Value
Type Description
string

The status code of the response.
Example: 200

In this article
Back to top