Row

class oci.nosql.models.Row(**kwargs)

Bases: object

The result of GetRow.

Methods

__init__(**kwargs) Initializes a new Row object with values from keyword arguments.

Attributes

time_of_expiration Gets the time_of_expiration of this Row.
usage Gets the usage of this Row.
value Gets the value of this Row.
__init__(**kwargs)

Initializes a new Row object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):

Parameters:
  • value (dict(str, object)) – The value to assign to the value property of this Row.
  • time_of_expiration (datetime) – The value to assign to the time_of_expiration property of this Row.
  • usage (oci.nosql.models.RequestUsage) – The value to assign to the usage property of this Row.
time_of_expiration

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

Returns:The time_of_expiration of this Row.
Return type:datetime
usage

Gets the usage of this Row.

Returns:The usage of this Row.
Return type:oci.nosql.models.RequestUsage
value

Gets the value of this Row. The map of values from a row.

Returns:The value of this Row.
Return type:dict(str, object)