Show / Hide Table of Contents

Class DeleteRowResult

The result of a DeleteRow operation.

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

Properties

ExistingValue

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

The map of values from a row.

ExistingVersion

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

The version string associated with the existing row. Returned if the delete fails due to options setting in the request.

IsSuccess

Declaration
[JsonProperty(PropertyName = "isSuccess")]
public bool? IsSuccess { get; set; }
Property Value
Type Description
bool?

Convey the success or failure of the operation.

Usage

Declaration
[JsonProperty(PropertyName = "usage")]
public RequestUsage Usage { get; set; }
Property Value
Type Description
RequestUsage
In this article
Back to top