Class Response
  A container object for response attributes.
Assembly: OCI.DotNetSDK.Audit.dll
  Syntax
  
  Properties
  
  
  
  
  Declaration
  
    [JsonProperty(PropertyName = "headers")]
public Dictionary<string, List<string>> Headers { get; set; }
   
  Property Value
  
  
  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
  
  
  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
 |