Show / Hide Table of Contents

Class Row

The result of GetRow.

Inheritance
object
Row
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 Row

Properties

TimeOfExpiration

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

The expiration time of the row. A zero value indicates that the row does not expire. An RFC3339 formatted datetime string.

Usage

Declaration
[JsonProperty(PropertyName = "usage")]
public RequestUsage Usage { get; set; }
Property Value
Type Description
RequestUsage

Value

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

The map of values from a row.

In this article
Back to top